静态引用??
public class PassValue {
public static void main(String[] args){
int x=5;
change(x);//为什么如果change()不是静态方法会出现"不能对类型 PassValue 中的非静态方法 change(int)进行静态引用
System.out.println(x);
}
public static void change(int y){
y=3;
}
希望高手解释一下?谢谢!