有问题想请教一下~
public class HelloWorld {
// 定义静态变量,保存班级名称
static String className = "JAVA开发一班";
private static HelloWorld c1;
public static void main(String[] args) {
HelloWorld.c1=new HelloWorld();
// 访问静态变量,输出班级名称
System.out.println(c1.className);
}
}
我用eclipse跑了一下这么运行出来输出没有问题,但是在classname下出现黄线并且说
“Multiple markers at this line
- The static field HelloWorld.className should be accessed in a static
way
- Line breakpoint:HelloWorld [line: 9] - main(String[])“
想具体请教一下这是什么问题呢?我应该如何修改会比较好呢?谢谢啦