Author Topic: New Blog Post: C++ Tips: Pointers and Memory Management  (Read 7902 times)

jjones

  • Guest
New Blog Post: C++ Tips: Pointers and Memory Management
« 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/

rwehrli

  • Community Member
  • Posts: 13
  • Hero Points: 4
Re: New Blog Post: C++ Tips: Pointers and Memory Management
« Reply #1 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!