题目内容

下列关于this指针的叙述正确的是()。

A. 任何与类相关的函数都有this指针
B. 类的成员函数都有this 指针
C. 类的友元函数都有this 指针
D. 类的非静态成员函数才有this指针

查看答案
更多问题

下列程序的执行结果是()。# include < iostream >using namespace std;class Test {public:Test(){ n+=2; }~Test() { n-=3;}static int getNum() { return n;}private:static int n;};int Test::n = 1;int main(){Test* P = new Test;delete p;cout<< "n=" < Test::getNum() << endl;return O;}

A. n=0
B. n=1
C. n=2
D. n=3

下列程序执行后的输出结果是( )。#include using namespace std;class AA{int n;public:AA(int k):n(k){}int get(){return n;}int get()const{ return n+ 1;}};int main( ){AA a(5);const AA b(6);cout<

A. 55
B. 57
C. 75
D. 77

有以下类定义:class AA{int a;public:int getRef( )const{return &a;} // ①int getValue( )const{return a;} //②void set( int n)const{a=n;} //③friend void show(AA aa)const{cout<

A. ①
B. ②
C. ③
D. ④

有以下类定义:class Point{int x_,y_;Public:Point (): x_(0), y_(0){}Point ( int x, int y =0);x_(x), y _(y){}};若执行语句:Point a(2), b[3],* c[4];则 Point 类的构造函数被调用的次数是( )

A. 2次
B. 3次
C. 4次
D. 5次

答案查题题库