码迷,mamicode.com
首页 > 编程语言 > 详细

线程异常测试

时间:2017-05-14 17:56:48      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:thread   cat   his   class   public   extend   imp   print   handler   

import java.lang.Thread.UncaughtExceptionHandler;

public class ThreadException
{
	public static void main(String[] args)
	{
		try
		{
			MyThread t1 = new MyThread(0);
			t1.start();
			MyThread t2 = new MyThread(1);
			t2.start();
		}
		catch (Exception e)
		{
			System.out.println(e.getMessage());
		}
		while(true);

	}
}

class MyThread extends Thread
{
	int i;
	public MyThread(int i)
	{
		this.i = i;
	}

	public void run()
	{
		if (i == 0) throw new RuntimeException(i + "");
		else
			System.out.println("thead end");
	}
}

  结果

Exception in thread "Thread-0" java.lang.RuntimeException: 0
	at MyThread.run(ThreadException.java:33)
thead end

  异常被封闭在当前线程,不会抛到开启线程的方法中来

线程异常测试

标签:thread   cat   his   class   public   extend   imp   print   handler   

原文地址:http://www.cnblogs.com/shuiyonglewodezzzzz/p/6852987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!