我正在阅读Thread
,java
我在书中找到了一个 code_snippet 并尝试实现它,但它没有按照书中的说明工作,why
?
public class Main_thread
{
public static void main ( String args [] )
{
System.out.println("hello kakke");
Thread t = new Thread () ;
t.start();
}
}
为什么不呢,再次打印“hello kakke”。