有关static的问题 请人帮忙
public class eg1{ int a=90; static float b=12.02f;
public static void main(String args[])
{ float c=a+b; System.out.println("="+c);
}
}
为什么在编译时出现不能读啊~!!
改为:public class eg1
{ int a=90;
public static void main(String args[])
{ static float b=12.02f;
float c=a+b; System.out.println("="+c);
}
}
就正常拉 希望可以帮我解释一下 谢谢~!!!!