Difference between revisions of "C++"
From LPTMS Wiki
m |
m (→Miscellaneous) |
||
(2 intermediate revisions by the same user not shown) | |||
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++]] | + | * [[OpenMP_and_Multithreading#C++|OpenMP in C++]] |
+ | * [[128 bits integers with gcc]] | ||
+ | * [[low-level integer routines with gcc]] |
Latest revision as of 17:22, 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...)