请问为什么在main方法上面调用对象赋值会出错报错?
package Vehicle; public class test { Fit fit =new Fit(); fit.sittingPeople =10; fit.highSpeed= 80; public static void main(String[] args) { } }
Fit fit =new Fit(); 这里没有报错,
但是下面:fit.sittingPeople =10;
fit.highSpeed= 80; 就报错了,是sittingPeople 和 highSpeed这里报错,
把他们放到main方法中就没事了?