请问一下,这段代码为什么编绎会失败啊?
有什么方法可以访问到method方法中的name?- class StaticTest{
- String name="张三";
- static String s="李四";
- void function()
- {
- System.out.println(name);
- System.out.println(s);
- }
- static void method()
- {
- System.out.println(StaticTest.name);
- System.out.println(s);
-
- }
- }
- class StaticTestDemo{
- public static void main(String[] args){
- StaticTest t=new StaticTest();
- t.function();
- StaticTest.method();
- }
- }
复制代码 |