为什么在方法里不能定义STATIC类型的变量?
为什么在方法里不能定义STATIC类型的变量?
public class a
{
public static void main(String args[])
{
static int d;
System.out.println(d);
}
}
为什么错?
public class a
{
public static void main(String args[])
{
static int d=0;
System.out.println(d);
}
}
错的