class xc1 extends Thread
{
public void run()
{
System.out.println(getName());
}
}
class run
{
public static void main(String[] args)
{
xc1 x1=new xc1();
xc1.start();
System.out.println("main:"+Thread.currentThread().getName());
}
}
以上函数段在编译中一直提示:“在静态上下文中无法引用非静态方法”
提示问题出现在xc1.start()这个代码上。。。为什么。。难道不能在静态方法main里调用?还是?
萧十郎
慕后森