可以用“px->*p”来访问类A的对象a 的数据成员,则下面正确的是( )
A. px是指向类数据成员的指针
B. p是指向类数据成员的指针
C. p是指向类的对象的指针
D. 无法确定指针类型
查看答案
指向类X中类型为type的数据成员的指针的说明形式为( )
A. type X::*pointer
B) X::type*pointer
C. type *X::pointer
D. X::*type pointer
语句的int*p=&k定义于指针P,于这个语句等效的语句序列是( )
A. int*p;p=&k
B. int*p;p=k
C. int*p;*p=&k
D. int*p;*p=k
有如下头文件 int f1(); static int f2(); Class MA{ public int f3(); static int f4();(静态函数) };在所描述的函数中,具有隐含的this指针的是( )
A. f1
B. f2
C. f3
D. f4
有如下程序 #include using namespace std; Class myclass{ public: MyClass(){++count;} ~MyClass(){--count;} static int getcount(){return count;}private static int count;};int MyClass::count=0;int main(){ Myclass obj; cout<
A. 121
B. 232
C. 221
D. 122