解释循环(hermeneutical circle)

题目

解释循环(hermeneutical circle)


相似考题

2.使用VC6打开考生文件夹下的工程test7_3,此工程包含一个源程序文件test7_3.cpp,其中含有一个类Circle的定义,但该类的定义并不完整。请按要求完成下列操作,将类Circle的定义补充完整。(1)为类Circle增加一个构造函数,该函数有一个参数,并在构造时将该参数值赋给成员radius。将该函数实现为一个非内联函数,并且使用参数列表的方式将类成员赋值。请在注释“//**1**”之后添加适当的语句。(2)为类Circle增加一个成员函数print(),使得可以输出有关圆的信息,比如下列程序Circle c;c.SetRadius(5);c.Print();将输出:The circle has radius of 5!请在注释“//**2**”之后添加适当的语句。(3)完成友元函数void CompareR(Circle *cl,Circle*c2)的定义,在屏幕中输出c1与c2比较radius大小结果,要求使用 if-else结构完成。请在注释“//**3**”之后添加适当的语句。输出结果如下;The circle has radus of 5!The circle has radius of 10!c1<c2注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。源程序文件test7_3.cpp清单如下:include<iostream.h>class Circle{public:Circle():radius(5){}//**1**void SetRadius(int r) {radius=r; }int GetRadius() {return radius; }//**2**friend void CompareR(Circle *c1,Circle*C2);private:int radius;};void CompareR(Circle *c1,Circle *C2){//**3**cout<<"c1>c2"<<endl;elseif((c1->GetRadius())==(c2->GetRadius()))cout<<"c1=c2"<<endl;elseif((c1->GetRadius())<(c2->GetRadius()))cout<<"c1<c2"<<endl;}void main(){Circle c1;c1.SetRadius(5);C1.Print();Circle c2(10);c2.Print();CompareR(&c1,&c2);}

更多“解释循环(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


    正确答案:A

  • 第3题:

    什么是QC小组(Quality Circle)?


    正确答案:以保证和提高产品质量和工作质量为目的,围绕生产现场所存在的问题,由若干员工自愿组成、主动开展质量管理活动的小组。

  • 第4题:

    当对DrawWidth进行设置后,将影响()。

    • A、Line、Circle、Pset和Line、Shape控件
    • B、Line、Circle、Pset
    • C、Line、Circle、Poine方法
    • D、Line、Shape控件

    正确答案:C

  • 第5题:

    下列属于Visual Basic工程文件的是()。

    • A、circlE.frm
    • B、circlE.vbp
    • C、circlE.doc
    • D、circlE.jpg

    正确答案:B

  • 第6题:

    名词解释题
    解释循环(hermeneutical circle)

    正确答案: 解释学用语。旨在对文本进行解释时,理解者根据文本细节来理解其整体,又根据文本的整体来理解其细节的不断循环过程。德国施莱尔马赫正式提出这一概念。
    解析: 暂无解析

  • 第7题:

    问答题
    If a circle is one, how many is an octagon?

    正确答案: 8
    解析:
    圆形有一条线,八角形有八条线,所以是8。

  • 第8题:

    问答题
    什么是QC小组(Quality Circle)?

    正确答案: 以保证和提高产品质量和工作质量为目的,围绕生产现场所存在的问题,由若干员工自愿组成、主动开展质量管理活动的小组。
    解析: 暂无解析

  • 第9题:

    单选题
    public abstract class Shape {  int x;  int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  and a class Circle that extends and fully implements the Shape class. Which is correct?()
    A

     Shape s = new Shape(); s.setAnchor(10,10); s.draw();

    B

     Circle c = new Shape(); c.setAnchor(10,10); c.draw();

    C

     Shape s = new Circle(); s.setAnchor(10,10); s.draw();

    D

     Shape s = new Circle(); s->setAnchor(10,10); s->draw();

    E

     Circle c = new Circle(); c.Shape.setAnchor(10,10); c.Shape.draw();


    正确答案: C
    解析: 暂无解析

  • 第10题:

    单选题
    What defines a great circle? ()
    A

    A curved line drawn on a Mercator Chart

    B

    A course line that inscribes a loxodromic curve

    C

    The shortest distance between any two points on the earth

    D

    The smallest circle that can be drawn on the face of a sphere


    正确答案: A
    解析: 暂无解析

  • 第11题:

    单选题
    Two circles, P and Q, lie in the same plane. If the center of circle Q lies on circle P, then in how many points could circle P and circle Q intersect?Ⅰ. 0Ⅱ. 1Ⅲ. 2
    A

    Ⅰ only

    B

    Ⅱ only

    C

    Ⅲ only

    D

    Ⅰ, Ⅱ and Ⅲ

    E

    Ⅱ and Ⅲ only


    正确答案: E
    解析:
    If the radius of circle Q is greater than the diameter of circle P, there is no intersection point. If the radius of circle Q is equal to the diameter of circle P, there is one intersection point. If the radius of circle Q is less than the diameter of circle P, there are two intersection points.

  • 第12题:

    单选题
    Concerning a celestial observation,the azimuth angle is measured from the principal vertical circle to the().
    A

    Greenwich celestial meridian

    B

    hour circle of the body

    C

    local celestial meridian

    D

    vertical circle of the body


    正确答案: D
    解析: 暂无解析

  • 第13题:

    当对Draw Width进行设置后,将影响( )。

    A.Line、Circle、Pset方法

    B.Line、Shape控件

    C.Line、Circle、Point方法

    D.Line、Circle、Pset方法和Line、Shape控件


    正确答案:A

  • 第14题:

    师长教师说:Draw a circle.学生画一个circle,这就属于课程标准里面谈到的用说话来做工作。


    正确答案:正确

  • 第15题:

    当设置了容器对象的DrawWidth属性后,会影响()

    • A、Pset、Line、Circle方法
    • B、Line、Shape控件
    • C、Pset、Line、Circle方法和Line、Shape控件
    • D、Line、Circle、point方法

    正确答案:A

  • 第16题:

    关于圆和椭圆的绘制说法正确的是()

    • A、都是用Circle方法,参数选择也是一样的
    • B、Circle(60,50),10表示在(60,50)处绘制一个半径为10的椭圆
    • C、Circle(60,50),10....0.6在窗体上绘制垂直方向上的椭圆
    • D、Circle(60,50),10....1.5在窗体上绘制垂直方向上的椭圆

    正确答案:D

  • 第17题:

    滚环复制(rolling-circle replication)


    正确答案:复制环状DNA的一种模式,在该模式中,DNA聚合酶结合在一个缺口链的3ˊ端,绕环合成与模板链互补的DNA,每一轮都是新合成的DNA取代前一轮合成的DNA。

  • 第18题:

    填空题
    If a circle has an area of 49π, what is the diameter of the circle?____

    正确答案: 14
    解析:
    因为圆的面积为πr2,πr2 =49π,r=7,直径为2r=14。

  • 第19题:

    单选题
    In relation to the turning circle of a ship , the term transfer means the distance().
    A

    gained in the direction of the original course

    B

    gained at right angles to the original course

    C

    the ship moves sidewise from the original course awayfrom the transfer means the distance

    D

    around the circumference of the turning circle


    正确答案: B
    解析: 暂无解析

  • 第20题:

    名词解释题
    滚环复制(rolling-circle replication)

    正确答案: 复制环状DNA的一种模式,在该模式中,DNA聚合酶结合在一个缺口链的3ˊ端,绕环合成与模板链互补的DNA,每一轮都是新合成的DNA取代前一轮合成的DNA。
    解析: 暂无解析

  • 第21题:

    单选题
    A circle has an area of A, A second circle has a diameter four times that of the first circle. What is the area of the second circle?
    A

    2A

    B

    4A

    C

    8A

    D

    16A

    E

    32A


    正确答案: D
    解析:
    设圆1的半径为r,所以A=πr2,所以圆2的半径为2r,面积=2*π*(2r)2=16πr2=16A,故本题应选D项。

  • 第22题:

    单选题
    Circles O and P intersect at exactly one point, as shown in the figure above. If the radius of circle O is 2 and the radius of circle P is 6, what is the circumference of any circle that has OP as a diameter?
    A

    B

    C

    12π

    D

    16π

    E

    64π


    正确答案: E
    解析:
    Since the radius of circle O is 2 and the radius of circle P is 6, OP = 2+6 or 8. Hence, the circumference of any circle that has OP as a diameter is 8π.

  • 第23题:

    单选题
    下列程序的运行结果是(  )。class Shape{ public Shape(){ System.out.print("Shape"); }}class Circle extends Shape{ public Circle(){ System.out.print("Circle"); }}public class Test{ public static void main(String[]args){ Shape d=new Circle(); }}
    A

    Shape

    B

    Circle

    C

    ShapeCircle

    D

    程序有错误


    正确答案: B
    解析:
    继承是面向对象编程的一个主要优点之一,它对如何设计Java类有着直接的影响。该程序首先编写了一个Shape的类,然后又编写一个类Circle去继承Shape类。由于子类拥有父类所有的属性和方法,所以输出的是ShapeCircle。