class MyThread extends Thread
{
MyThread()
{
System.out.print(" MyThread");
}
public void run()
{
System.out.print(" bar");
}
public void run(String s)
{
System.out.println(" baz");
}
}
public class TestThreads
{
public static void main (String [] args)
{
Thread t = new MyThread()
{
public void run()
{
System.out.println(" foo");
}
};
t.start();
}
}
您好,我是在java中新目前正在學習多線程,當我運行上面的程序,然後我得到這個特定的輸出MyThread的富請解釋一下爲什麼?爲什麼我從這個Java程序獲得以下輸出?
那你覺得呢? – cHao