下列的符号常量定义中,错误的定义是( )。
A、const M=10;
B、const int M=20;
C、const char ch;
D、const bool mark=true;
第1题:
有如下类定义: 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(AAaa)const{cout<<a;} //④ }; 其中的四个函数定义中正确的是
A.①
B.②
C.③
D.④
第2题:
若有以下类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; }
第3题:
常量定义必须使用关键字 const
第4题:
使用const语句定义一个符号常量时,不必对它进行初始化。()
A对
B错
第5题:
在C#的方法中定义一个常量要用const关键字
第6题:
在C#中,static不能修饰const定义的常量。