C++
From LPTMS Wiki
Pointers handling
pointers are not always easy to handle, particularly for destruction, memory management... There exists some solutions provided by boost
- Smart pointers
- [www.boost.org/doc/libs/release/libs/ptr_container Pointer containers] (vector, list, deque...)
testing c++ source display:
template<typename T> class B { private: T t; public: B(T const& _t) : t(_t) {}; T value() const {return t;}; }; int main() { B<int> b(2); }