博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 复习 —— 守护线程以及线程监测工具
阅读量:5784 次
发布时间:2019-06-18

本文共 1645 字,大约阅读时间需要 5 分钟。

hot3.png

1、守护线程

Java线程机制分为两种 ,用户线程(User Thread)和守护线程(Daemon Thread)。

用户线程:运行在前台,执行具体的任务。例如:程序的主线程,连接网络的子线程。

守护线程:运行在后台,为其他线程提供服务的。例如:垃圾回收器线程

线程异同:一旦所有的用户线程都运行结束,守护线程会随JVM一起退出,其实这就是守护线程应该的生命周期,因为他是服务于其用户线程的线程,当用户线程一旦执行完毕,守护线程的职责就结束了,理该退出!但是用户线程是不会在主线程结束的时候而退出的。

线程应用:用户线程一般执行在特定的任务上,守护线程一般使用在 数据库连接池中的监测线程,JVM启动后监测线程等。

2、API

Thread t1 = new Thread(sample);t1.setDaemon(true);t1.start();

1)thread.setDaemon(true)必须在thread.start()之前设置,否则会跑出一个IllegalThreadStateException异常。换句话说,你不能把正在运行的常规线程设置为守护线程。

2) 在Daemon线程中产生的新线程也是Daemon的。

3)注意读写操作或者计算逻辑是不能使用守护线程的。因为在Daemon Thread还没来的及操作时,虚拟机可能已经退出。

3、线程监测工具

1)使用jstack生成线程快照,在JDK的bin目录下

2)jstat.exe 命令行工具的使用,在JDK的bin目录下

3)jvisualvm.exe 界面化工具的使用,SUN公司提供,同样在JDK的bin目录下

JDK 安装的bin目录下有这几个文件

104306_sxdP_1989321.png

通过DOS窗口如下执行jstack -l pid ,查看线程的运行状态,这里就要注意线程的生命周期的六大状态

这里PID可以通过任务管理器的——查看——选择列——勾选PID即可查看

104328_mBnu_1989321.png

A thread state. A thread can be in one of the following states:

  • NEW

    A thread that has not yet started is in this state.

  • RUNNABLE

    A thread executing in the Java virtual machine is in this state.

  • BLOCKED

    A thread that is blocked waiting for a monitor lock is in this state.

  • WAITING

    A thread that is waiting indefinitely for another thread to perform a particular action is in this state.

  • TIMED_WAITING

    A thread that is waiting for another thread to perform an action for up to a specified waiting time is in this state.

  • TERMINATED

    A thread that has exited is in this state.

A thread can be in only one state at a given point in time. These states are virtual machine states which do not reflect any operating system thread states.

使用jvisualvm.exe 查看线程状态,只要启动界面程序,该程序就会自动去搜索java程序,并且监控程序中线程使用情况

104359_pggu_1989321.png

转载于:https://my.oschina.net/heweipo/blog/505228

你可能感兴趣的文章
个人总结
查看>>
uva 673 Parentheses Balance
查看>>
Bzoj 2252: [2010Beijing wc]矩阵距离 广搜
查看>>
css 禁止选中文本
查看>>
bzoj2165
查看>>
算术运算表达式正则及分析
查看>>
Oracle 12c 多租户 手工创建 pdb 与 手工删除 pdb
查看>>
shell初涉
查看>>
[浪子学编程][MS Enterprise Library]ObjectBuilder之创建策略祥解(二)
查看>>
ASP.NET 中设置路径的三种方式
查看>>
EBS使用 Distributed AD在多个节点并行adpatch
查看>>
windows添加和删除服务
查看>>
关于云栖,有点无语的几个地方,管理能不能管?
查看>>
Windows线程的同步与互斥
查看>>
C#进阶系列——MEF实现设计上的“松耦合”(四):构造函数注入
查看>>
AngularJs ng-change事件/指令(转)
查看>>
linux系统下安装两个或多个tomcat
查看>>
ProtoBuffer 简单例子
查看>>
iOS多线程开发系列之(一)NSThread
查看>>
微信小程序初体验(上)- 腾讯ISUX社交用户体验设计成员出品
查看>>