[求助]一个this调用的问题
package src;public class Test
{
static int a;
static void a()
{
System.out.println("Hello!");
}
public void test()
{
this.a();
this.a; //这步为什么不能调用a?
}
}
2007-10-18 16:29
2007-10-18 16:38
2007-10-18 16:39
2007-10-18 16:48
2007-10-20 13:25