- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Java 当前线程
Java 当前线程
Java线程教程 - Java当前线程
⼀个语句可以由不同的线程在不同的时间执⾏。
Thread类静态⽅法currentThread()返回调⽤此⽅法的Thread对象的引⽤。
虑下⾯的语句:
Thread t = Thread.currentThread();
该语句将执⾏上述语句的线程对象的引⽤分配给变量t。
例⼦
下⾯的代码演⽰了如何使⽤currentThread()⽅法。
两个不同的线程调⽤CurrentThread类的run()⽅法中的Thread.currentThread()⽅法。
该程序只打印正在执⾏的线程的名称。
public class Main extends Thread {
public Main(String name) {
super(name);
}
@Override
public v id run() {
Thread t = Thread.currentThread();
String threadName = t.getName();
System. ut.println(Inside run() meth d: + threadName);
}
public static v id main(String[] args) {
Main ct1 = new Main(First Thread);
Main ct2 = new Main(Sec nd Thread);
ct1.start();
ct2.start();
Thread t = Thread.currentThread();
String threadName = t.getName();
System. ut.println(Inside main() meth d: + threadName);
}
}
上⾯的代码⽣成以下结果。
当你运⾏⼀个类时,JVM启动⼀个名为main的线程,它负责执⾏main()⽅法。
处理线程中未捕获的异常
我们可以处理线程中抛出的未捕获异常。
它使⽤实现java.lang.Thread.UncaughtExceptionHandler接⼜的类的对象来处理。
接⼜被定义为Thread类中的嵌套静态接⼜。
下⾯的代码显⽰了⼀个类,它可以⽤作线程的未捕获异常处理程序。
class CatchAllThreadExcepti nHandler implements Thread.UncaughtExc
public v id uncaughtExcepti n(Thread t, Thr wable e) {
System. ut.println(Caught Excepti n fr m Thread: + t.getNa
}
}
public class Main {
public static v id main(String[] args) {
CatchAllThreadExcepti nHandler handler = new CatchAllThreadExc
// Set an uncaught excepti n handler f r main thread
Thread.currentThread().setUncaughtExcepti nHandler(handler);
// Thr w an excepti n
thr w new RuntimeExcepti n();
}
}
上⾯的代码⽣成以下结果。
W3Cschool ( )最⼤的技术知识分享与学习平台
篇内容来⾃于 ⽹站⽤户上传并发布。
文档评论(0)