Difference between revisions of "C++"
From LPTMS Wiki
m (→Miscellaneous) |
m |
||
Line 15: | Line 15: | ||
* [[Interfacing C++ and Python]] | * [[Interfacing C++ and Python]] | ||
* [[OpenMP_and_Multithreading#C++|OpenMP in C++]] | * [[OpenMP_and_Multithreading#C++|OpenMP in C++]] | ||
+ | * [[128 bits integers with gcc]] |
Revision as of 15:49, 11 April 2012
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...)