发表在JavaWeb图书答疑
2009-06-02
public class Frist{
static String s1 ="内容";
public static void main(String[] args){
System.out.println(s1);
}
}
请问第二句不加static 为什么会报错啊.
我用eclipse 3.2
我以前用5.5的 好像不用加静态修饰啊.
绿草_mrkj
学分:0 LV1
static 修饰的属性表示静态变量,main方法是静态方法,在静态方法中不可以应用非静态的变量。
如果该句没有static修改,可以通过创建Frist对象来调用。
naclming4232
学分:0 LV1
TA的每日心情
2024-04-08 08:49:33
static 修饰的东西 在代码刚刚运行的时候先给static 修饰的成员分配内存 如果不加static则系统先给主函数分配内存 而System.out.println(s1);中s1 则被看成是未定义的了!所以要加上static 就按顺序执行static 修饰的成员了!