解释循环(hermeneutical circle)
第1题:
有如下类定义:
class Point{
public:
Point(int xx=0,int yy=0):x(xx),y(yy) { }
private:
int x,y;
};
class Circle:public Point{
public:
Circle(int r):radius(r) { }
private:
int radius;
};
派生类Circle中数据成员的个数是( )。
A、3
B、1
C、5
D、2
答案:A
解析:本题考查默认构造函数和带参数的构造函数,题目中定义一个对象a(2)以及对象数组b[3],共执行3次构造函数,对象指针不调用构造函数。
第2题:
A line of position from a celestial observation is a segment of a ______.
A.circle of equal altitude
B.parallel of declination
C.parallel of altitude
D.vertical circle
第3题:
什么是QC小组(Quality Circle)?
第4题:
当对DrawWidth进行设置后,将影响()。
第5题:
下列属于Visual Basic工程文件的是()。
第6题:
第7题:
第8题:
第9题:
Shape s = new Shape(); s.setAnchor(10,10); s.draw();
Circle c = new Shape(); c.setAnchor(10,10); c.draw();
Shape s = new Circle(); s.setAnchor(10,10); s.draw();
Shape s = new Circle(); s->setAnchor(10,10); s->draw();
Circle c = new Circle(); c.Shape.setAnchor(10,10); c.Shape.draw();
第10题:
A curved line drawn on a Mercator Chart
A course line that inscribes a loxodromic curve
The shortest distance between any two points on the earth
The smallest circle that can be drawn on the face of a sphere
第11题:
Ⅰ only
Ⅱ only
Ⅲ only
Ⅰ, Ⅱ and Ⅲ
Ⅱ and Ⅲ only
第12题:
Greenwich celestial meridian
hour circle of the body
local celestial meridian
vertical circle of the body
第13题:
当对Draw Width进行设置后,将影响( )。
A.Line、Circle、Pset方法
B.Line、Shape控件
C.Line、Circle、Point方法
D.Line、Circle、Pset方法和Line、Shape控件
第14题:
师长教师说:Draw a circle.学生画一个circle,这就属于课程标准里面谈到的用说话来做工作。
第15题:
当设置了容器对象的DrawWidth属性后,会影响()
第16题:
关于圆和椭圆的绘制说法正确的是()
第17题:
滚环复制(rolling-circle replication)
第18题:
第19题:
gained in the direction of the original course
gained at right angles to the original course
the ship moves sidewise from the original course awayfrom the transfer means the distance
around the circumference of the turning circle
第20题:
第21题:
2A
4A
8A
16A
32A
第22题:
4π
8π
12π
16π
64π
第23题:
Shape
Circle
ShapeCircle
程序有错误