C++智能指針《第一篇》

#include <iostream> #include <memory> using namespace std;ios //循環引用問題 template <typename T> class Node { public:     Node(const T& value)         :_pPre(NULL)         , _pNext(NULL)         ,_value(v
相關文章
相關標籤/搜索