下面程序的运行结果是( )。 #include using namespace std; class TestClass { static int n: public: TestClass ()

admin2019-04-18  28

问题 下面程序的运行结果是(    )。
    #include
    using namespace std;
    class TestClass
    {
    static int n:
    public:
    TestClass ()
    {
    n++;
    }
    static inttest()
    {
    for(int i=0;i<4;i++)
    n++;
    returnn;
    }
    };
    int

选项 A、4,10
B、4,6
C、0,6
D、0,4

答案A

解析 在主函数中首先调用TestClass中的test函数输出,类中的n为静态数据成员,可以为所有的对象共享这些数据,这里调用后n等于4。定义对象c1,c2调用构造函数后n=6,所以主函数再次执行“cout<
转载请注明原文地址:https://kaotiyun.com/show/C4Ap777K
0

最新回复(0)