单选题下列语句中,错误的是( )。Aconst int buffer=256;Bconst double*point;Cint const buffer=256;Ddouble*const point;
单选题
下列语句中,错误的是( )。
A
const int buffer=256;
B
const double*point;
C
int const buffer=256;
D
double*const point;
参考解析
解析:
常量指针是指向一个常量的指针变量,指针自身的内容可以改变但指针指向的内容不可以改变;指针常量是一个常量,不能修改指针自身的内容,但可以通过指针修改其所指向的内容。A项和C项声明常量buffer=256;B项声明常量指针point;D项,指针常量point没有初始化,编译无法通过。
常量指针是指向一个常量的指针变量,指针自身的内容可以改变但指针指向的内容不可以改变;指针常量是一个常量,不能修改指针自身的内容,但可以通过指针修改其所指向的内容。A项和C项声明常量buffer=256;B项声明常量指针point;D项,指针常量point没有初始化,编译无法通过。
相关考题:
下列符号常量的声明中,不合法的是A.Const a As Single=1.1B.Const a=”0K”C.Const a As Double=Sin(1)D.Const a As Integer=“12”
下列语句中,错误的是______。A.const int buffer=256;B.const double*point;C.int const buffer=256;D.double*const point;
下列语句中,错误的是 brA . const int buffer=256; brB . const int temp;brC . const double *point ; brD . const double *rt =new double(5.5);br
有如下类定义: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 . ④
有如下程序:#includeusing namespace std;class Complex{double re, im;public:Complex(double r, double i):re(r), im(i){}double real() const{return re;}double image() const{return im;}Complex operator +=(Complex a){re += a.re;im += a.im;return *this;}};ostream operator(ostream s,const Complex z){return s'('}int main(){Complex x(1, -2), y(2, 3);cout(x += y)return 0;}执行这个程序的输出结果是A . (1, -2)B . (2, 3)C . (3, 5)D . (3, 1)
( 18 ) 下列语句中,错误的是A ) const int buffer=256;B ) const double *point;C ) int const buffer=256;D ) double * const point;
有以下类定义 classPoint{ public: Point(int x=0,int y=0){_x=x;_y=y;} void Move (int xOff,int yOff {_x +=xOff;_y+yOff} void Print() const {cout<<'('<<_x<<','<<_y<<')'<<endl;} private: int_x_y; }; 下列语句中会发生编译错误的是A.Pointpt;pt;Print();B.const Point pt;pt.Print();C.Pointpt;pt.Move(1,2);D.const Point pt;pt.Move(1,2);
下列语句中,错误的是( )。A.const int buffer:256;B.const int temp;C.const double*point;D.const double*rt=new double(5.5);
有如下程序:#includeiostream#includecmathusing std::cout;class Point{public:friend double distance(const Point p); //P距原点的距离Point(int xx=0,int yy=0):x(xx),Y(YY){}//①private:int x,y;};double distance(const Point p){ //②return sqrt(P.x*P.x+P.y*P.y);}int main(){Point p1(3,4);coutdistance(p1);return 0; //③}下列叙述中正确的是A.程序编译正确B.程序编译时语句①出错C.程序编译时语句②出错D.程序编译时语句③出错
下列程序的执行结果为【 】。include class Point{public:Point(double i, double j) 下列程序的执行结果为【 】。include <iostream. h>class Point{public:Point(double i, double j) { x=i; y=j;}double Area() const { return 0.0;}private:double x, y;};class Rectangle: public Point{public:Rectangle(double i, double j, double k, double 1)double Area() const {return w * h;}private:double w, h;};Rectangle: :Rectangle(double i, double j, double k. double 1): Point(i,j).{w=k, h=1}void fun(Point s){cout<<s. Area()<<end1;}void main( ){Rectangle rec(3.0, 5.2, 15.0. 25.0);fun(rec)}
下列声明语句中没有起到定义作用的是( )。A.int count;B.const double pi=3.14159;C.extern long index;D.int max(int a,int b){return a>b? a:b;}
下列符号常量的声明中,______ 是不合法的。A.Const a As Single =1.1B.Const d As Integer =“12”C.Const b As Double = Sin(1)D.Const c As String = “OK”
What do the following declarations mean?a) const int a;b) int const a;c) const int *a;d) int * const a;e) int const * a const;
下列符号常量的声明中,不合法的是A.Const a As Single=1.1B.Const a="OK"C.Const a As Double=Sin(1)D.Const a As Integer="12"
下列语句中,错误的是( )。A.const int buffer=256;B.const double*point;C.int const buffer=256;D.double*eonst point:
下面的语句中错误的是( )。A.int a=5;int x[a];B.const int a=5;int x[a];C.int n=5;int *p=new int[n];D.const int n=5;int *p=new int[a];
有以下类定义 class Point{ public: Point{int x = 0, int y=0) {_x = x; _y = y;} void Move int xoff, int yoff) {_x +=xoff;_y+=yoff;} void Print() const {cout<<'('<<_x<<','<<_y<<')' << end1;} private: int_x,_y; }; 下列语句中会发生编译错误的是A.Point pt;pt.Print();B.const Point pt;pt.Print();C.Point pt;pt.Move(1, 2);D.const Point pt;pt.Move(1, 2)
下面的语句中错误的是A.int a = 5; int x[a];B.const int a = 5; int x[a];C.int n = 5; int *p = new int [a];D.const int n = 5; int *p = new int [a];
下列符号常量的声明中,()是不合法的。A、Const a As Single = 1.1B、Const a As Integer = “12”C、Const a As Double = Sin(1)D、Const a =”OK”
在下列的标识符常量的定义语句中,错误的定义语句是()。A、const double PI=3.14159;B、const int N=20;C、const char ch;D、const bool mark=true;
以下各项中,不是字符串常量的是()。A、Const a As Single=10.5B、Const a As Double=Cos(10.5)C、Const a="abc"D、Const a As Integer=10.5
单选题下列语句中,错误的是( )。Aconst int buffer=-256;Bconst int temp;Cconst double*point;Dconst double*rt=new double(5.5);
单选题下列语句中,错误的是( )。Aconst int buffer=256;Bconst double*point;Cint const buffer=256;Ddouble*const point;