多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

public class Mycircle {  public double radius;  public double diameter;  public void setRadius(double radius)  this.radius = radius;  this.diameter= radius * 2;  }  public double getRadius()   {  return radius;  }  Which statement is true?()  

  • A、 The Mycircle class is fully encapsulated.
  • B、 The diameter of a given MyCircle is guaranteed to be twice its radius.
  • C、 Lines 6 and 7 should be in a synchronized block to ensure encapsulation.
  • D、 The radius of a MyCircle object can be set without affecting its diameter.
正确答案:B
答案解析:
进入题库查看解析

微信扫一扫手机做题