c++这段代码没有域操作符为什么可以运行
阿神
阿神 2017-04-17 15:00:49
0
2
460

问题标出了, A(); //不应该A::A()吗?

#include <iostream>
#include <string>
using namespace std;

class A
{
public:
    A()
    {
        cout << "A constructor" << endl;
    }

    ~A()
    {
        cout << "A destructor" << endl;
    }
};

int main()
{
    A();  //不应该A::A()吗?

    cout<<"end xxx\n";
    cout<<"end yyy\n";

}
阿神
阿神

闭关修行中......

全部回覆(2)
阿神

正常的呼叫應該是

int main()
{
    A a = A();  //不应该A::A()吗?

    cout<<"end xxx\n";
    cout<<"end yyy\n";

}

類比一下一個由傳回值的函數

int add(int a, int b);

可以這樣呼叫

int c = add(1, 2);

當然也可以這樣呼叫了

add(1, 2);
阿神

因為這是建構子啊。 。 。所以這相當於創建了一個臨時對象,建構函式為啥要寫兩次類別名稱

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板