对于变量的测试不能放在主函数中,因为主函数是static类型,不能调用非static类型的变量,所以要单写一个类进行测试就对了
public class IntegerTest {
public static void main(String []args){
Test t = new Test();
t.test();
}
}
class Test{
int i = 3;
public void test(){
int i = 0 ;
i = this.i + 4;
this.i = this.i - 3;
System.out.println(this.i) ;
System.out.println(i);
}
} |