关于java调用线程类子函数start()的问题?

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里调用?还是?

红糖糍粑
浏览 741回答 2
2回答

萧十郎

你这句话是否应该写成x1.start().而不是 xc1.start(), 否则 x1白声明了,白建立实例了。

慕后森

public void run(){System.out.println(getName());}System.out.println(getName()); getName()方法在哪里,并且要是静态的方法。
打开App,查看更多内容
随时随地看视频慕课网APP