不知道你这个完整类是什么样子的 是这个样子的吗
public class Test extends Thread {
{
new Thread(new Runnable(){ //匿名
public void run(){
System.out.println("runnable run");
}
})
{
public void run(){
System.out.println("subthread run");
}
}.start();
}
public static void main(String[] args) {
Test t=new Test();
// t.start();
}
} |