SlickEdit Community

General => General Programming => Topic started by: jjones on November 16, 2007, 01:50:48 PM

Title: New Blog Post: C++ Tips: Pointers and Memory Management
Post by: jjones on November 16, 2007, 01:50:48 PM
C++ Tips: Pointers and Memory Management
http://blog.slickedit.com/2007/11/c-tips-pointers-and-memory-management/


If C++ programmers had a bill of rights, one of those rights would be stated “The Right to own and bear pointers.” As much as modern languages tout garbage collection and dispell themselves of the concept of a pointer, the fact remains that you will achieve better performance if you manage your own memory, and pointers are a critical part of that.

Continue reading C++ Tips: Pointers and Memory Management here: http://blog.slickedit.com/2007/11/c-tips-pointers-and-memory-management/
Title: Re: New Blog Post: C++ Tips: Pointers and Memory Management
Post by: rwehrli on December 14, 2007, 04:13:12 PM
Not bad...expected at least a mention of std::auto_ptr.  FYI: Rookie is not spelled with a Y.


Take Care.

Rob!