std::vector存放類的指針避免拷貝構造函數的調用

#include <iostream> #include <vector> using namespace std; class A { public: A() { printf("A()\n"); } ~A() { printf("~A()\n"); } A(const A& other) { printf("copy\n"); } }; int m
相關文章
相關標籤/搜索