【单选题】已知有类定义: class Point { private: int x,y; public: void setPoint(int x0,int y0) { x=x0; y=y0;} };以下说法中错误的是( )。
A.
执行语句Point p2;后,可使用p2. setPoint (1,2);给p2的数据成员x、y赋值
B.
由Point定义的对象,所需存储空间是数据成员x和y以及成员函数 setPoint 所占存储空间之和
C.
执行语句Point px=new Point;后,需使用语句delete px;释放动态对象对应的存储空间
D.
执行语句Point p1,*px=&p1;后,可使用px->setPoint(1,1);调用p1的成员函数setPoint
【单选题】具有平肝潜阳、重镇降逆、凉血止血功效的药物是
【单选题】有以下类定义: class Point { public: Point(int x=0,int y=0){_x=x; _y=y;} void Move(int x Off, int y Off) {_x+=x Off; _y+=y Off; } void Print() const { cout <<'(' << _x << ',' << _y << ')'<< end 1;} private: ...
A.
Point pt; pr. Print();
B.
const Point pt; pt. Print();
C.
Point pt; pt. Move(1,2);
D.
const Point pt; pt. Move(1,2);
【单选题】具有平肝潜阳,重镇降逆,凉血止血功效的药是:
【单选题】两个无符号数a减去b操作,CPSR的Z=0,C=1,说明什么情况?
【单选题】有以下类定义 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;...
B.
const Point pt;pt.Print();
C.
Point pt;pt.Move(1, 2);
D.
const Point pt;pt.Move(1, 2)
【判断题】脱氧核糖核苷中的糖环 3’ 位没有羟基。
【单选题】有以下类定义: 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];
【单选题】有以下类定义 : 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 类的构造函数被调用的次数是()
【单选题】有以下类定义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 << ')' << en...
A.
Point pt; pt.Print( );
B.
Point pt; pt.Move(l, 2);
C.
const Point pt; pt.Print( );
D.
const Point pt; pt.Move(l, 2);