class base {
int i;
public:
base()
{
i = 10;
cout << "in the constructor" << endl;
}
};
int main()
{
base a;// here is the point of doubt
getch();
}
base a
和base a()
有什麼區別?調用默認構造函數
在第一種情況下構造函數被調用,但不在第二種情況!
不應該說,它是'基地* A =新基地('? – Sid 2013-04-29 23:23:18
這個答案是否真的與問題相關?你沒有解決'base b()' – narengi 2015-06-23 02:38:56