标签:catch ack 执行 mamicode try img pac 技术 rri
一个java程序实际上是一个JVM进程,JVM进程用一个主线程来执行main()
方法,在main()
方法内部,我们又可以启动多个线程。此外,JVM还有负责垃圾回收的其他工作线程等。
public class MyThread{ public static void main(String[] args) { final Thread t = new testThread(); t.start(); // 启动新线程 System.out.println("start main thread!"); } } class testThread extends Thread { @Override public void run() { System.out.println("start new thread!"); } }
运行测试
package pack_10; public class testThread { public static void main(String[] args) { System.out.println("main start..."); Thread t = new Thread() { public void run() { System.out.println("thread run..."); try { Thread.sleep(10); } catch (InterruptedException e) {} System.out.println("thread end."); } }; t.start(); try { Thread.sleep(20); } catch (InterruptedException e) {} System.out.println("main end..."); } }
运行结果
标签:catch ack 执行 mamicode try img pac 技术 rri
原文地址:https://www.cnblogs.com/lipu12281/p/12187342.html