我打算有一個構造函數來接受引用,然後創建指向作爲引用傳遞的對象的指針,並將這些指針存儲在一個字段中。然而,由於某種原因,我這樣做,複製正在創建,我不明白爲什麼: #include <iostream>
#include <vector>
#include <memory>
// the class with the field of pointers
template<class T,
這些代碼工作完美: #include <ctime>
int main()
{
time_t t;
struct tm* now;
t = time(0); // Here is my attention
now = localtime(&t); // and here
return 0;
}
現在我想在if語句以此作爲條件,