Difference between revisions of "C++"
From LPTMS Wiki
m (→Miscellaneous) |
m |
||
Line 14: | Line 14: | ||
* [[pointer to member function]] | * [[pointer to member function]] | ||
* [[Interfacing C++ and Python]] | * [[Interfacing C++ and Python]] | ||
+ | * [[OpenMP_and_Multithreading#C++ OpenMP in C++]] |
Revision as of 09:50, 17 October 2011
Reference websites
Pointers handling
pointers are not always easy to handle, particularly for destruction, memory management... There exists some solutions provided by boost
- Smart pointers (shared_ptr,...)
- Pointer containers (vector, list, deque...)