I’m moving from Java to C++ and have really enjoyed it. One thing I don’t enjoy is not understanding memory at all because Java used to do that for me.
I’ve purchased a book : Memory as a Programming Concept in C and C++ – Frantisek Franek
Are there some good sites for me to go and learn interactively about C/C++ and memory use (tutorials, forums, user groups)?
Try these:
http://www.mycplus.com/tutorials/cplusplus-programming-tutorials/memory-management/
http://www.cantrip.org/wave12.html
http://linuxdevcenter.com/pub/a/linux/2003/05/08/cpp_mm-1.html
And in wikibook: http://en.wikibooks.org/wiki/C++_Programming/Memory_Management
This article will compare the Java memory management operators with the C++ equivalents: http://www.javamex.com/java_equivalents/memory_management.shtml
http://www.infosys.tuwien.ac.at/Staff/tom/Teaching/UniZH/CPP/slides/cpp_07.pdf
Hope these will help you!