( 18 ) 下列语句中,错误的是
A ) const int buffer=256;
B ) const double *point;
C ) int const buffer=256;
D ) double * const point;
第1题:
20、在下列函数原型中,可以作为类AA构造函数的是()。
A.void AA(int);
B.int AA();
C.AA(int)const;
D.AA(int);
第2题:
在下列函数原型中,可以作为类AA构造函数的是()
A.void AA(int);
B.int AA();
C.AA(int) const;
D.AA(int);
第3题:
20、在下列函数原型中,可以作为类AA构造函数的是()。
A.void AA(int);
B.AA(int);
C.int AA();
D.AA(int) const;
第4题:
若有以下类W说明,则函数fConst的正确定义是()。 class W { int a; public: void fConst(int& ) const; };
A.void W::fConst(int& k ) const { k = a; }
B.void W::fConst(int& k ) const { k = a++; }
C.void W::fConst(int& k ) const { cin>> a; }
D.void W::fConst(int& k ) const { a = k; }
第5题:
下面关于const指针的语句中,正确的是()。
A.int a=10; const int *p=&a; *p=20;
B.int a=10; int *const p= &a; *p=20;
C.int a=10, b=20; int *const p=&a; p=&b;
D.int a=10, b=20; const int *const p=&a; p=&b;