有如下程序: #inc1ude<iostream> using namespace std; c1ass test{ private: int a; public: test0 {cout+"cons

admin2020-07-30  8

问题 有如下程序:
    #inc1ude<iostream>
    using namespace std;
    c1ass test{
    private:
    int a;
    public:
    test0 {cout+"constructor"+end1;}
    test(int a){cout+a+end1;)
    test(const test&test)
    {
    a= test.a;
    cout+"copy constructor"+end1;
    }
    test( ){Cout+"dcstructor"+end1;}
    };
    int main()
    {
    test A(3);
    retum 0;
    }
    运行时输出的结果是(    )。

选项 A、3
B、constructor  destructor
C、copy Destructor
D、3 destructor

答案D

解析 此题考查的是构造函数和析构函数。一个类可以有多个构造函数,但只能有一个析构函数。每一个对象在被创建时,都会隐含调用众多构造函数中的一个,而在销毁时又会隐含调用唯一的析构函数。此题中,主函数创建对象A是会隐含调用test(int a)这个构造函数,输出3;接着主函数结束,对象A销毁又隐含调用~test()析构函数输出destructor。
转载请注明原文地址:https://jikaoti.com/ti/vzl0FFFM
0

最新回复(0)