Heim > Fragen und Antworten > Hauptteil
在类Telphone属性设置为public screen中,在main方法中写成对象名.属性()即hello2.screen=6.0f是对screen赋值,能输出结果;但是写成hello2.screen(6.0f)就不对,显示错误,请问这是什么原因,这两者有什么区别?
大家讲道理2017-04-18 10:52:36
对于变量而言,等号是赋值操作,后面的写法是调用一个叫做screen且参数是float的方法,你没有这个方法当然报错了。