JAVA 程序,求帮忙解释下 circ.r=20;这句话在程序里的作用

JAVA 程序,求帮忙解释下
circ.r=20;这句话在程序里的作用

circ是类的实例名,r是类的一个属性

这一句的意思是把circ实例的r属性设置为20
温馨提示:内容为网友见解,仅供参考
第1个回答  2015-09-28
只看这句代码的意思应该是给对象 circ 中的变量 r 赋值 20
第2个回答  2015-09-28
就是给circ的 r 对象 赋值为20

java程序为什么会报错了还能运行?
public void draw() { throw new UnsupportedOperationException("Not supported yet.");} 显然你没有实现所有的方法,可程序依然有错 再一细看 public float getArea(float r){ float area= Calculate.PI*r*r;return area;} public float getCirccum(float r){ float circum=Calculate.PI*2*r;r...

试编写一个java应用程序,要求输入一个圆的半径,输出其面积
代码为:Scanner scanner=new Scanner(System.in);System.out.println("请输入圆的半径:");int r=Integer.parseInt(scanner.next()); \/\/获取半径System.out.println("圆的面积为:"+Math.PI*r*r);

相似回答