首页 > 代码库 > JAVA线程
JAVA线程
线程的各种状态如上图所看到的。
对于wait/notify的測试,我将会留到 生产者消费者模式中实现。
对于join、interrupt的測试例如以下:
package com.huan; public class ThreadTest { public static void main(String[] args) throws Exception{ // joinTest(); interruptTest(); } public static void joinTest(){ new Thread(){ @Override public void run() { Thread t1 = new Thread(){ @Override public void run() { try { Thread.sleep(3000); System.out.println("//t1 thread"); } catch (InterruptedException e) { System.out.println("//sleep interrupted"); } } }; t1.start(); try { t1.join(); } catch (InterruptedException e) { System.out.println("//join interrupted"); } System.out.println("//out thread"); } }.start(); //t1 thread //out thread }; public static void interruptTest(){ new Thread(){ @Override public void run() { Thread t1 = new Thread(){ @Override public void run() { try { Thread.sleep(3000); System.out.println("//t1 thread"); } catch (InterruptedException e) { System.out.println("//sleep interrupted"); } } }; t1.start(); System.out.println("//out thread"); t1.interrupt(); } }.start(); //out thread //sleep exception }; }
JAVA线程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。