Java 中的默认线程
如果代码中没有用户创建的线程,那么当我们调用 jvm 时会启动多少个默认线程?我已经知道将启动 2 个线程,它们是
1)主线程(非守护线程)
2)垃圾收集器(守护线程)
How many default Threads are started when ever we call jvm if there is no user created threads in the code ? I already Know 2 threads are going to start, those are
1) Main thread (Non Daemon Thread)
2) Garbage Collector (Daemon Thread)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案取决于您的 JVM。在我的程序中,无操作 Java 程序会产生以下线程:
您可以使用
jstack -l <pid>
亲自查看。The answer depends on your JVM. On mine, a no-op Java program results in the following threads:
You can see for yourself with
jstack -l <pid>
.如果安装了 JDK,则可以使用位于 bin (Windows) 目录中的
jvisualvm
或jconsole
(旧版本的 Java)。该工具将允许您查看所有线程及其详细信息。
附截图。
If you have the JDK installed you can use
jvisualvm
orjconsole
(older versions of Java) located in the bin (Windows) directory.The tool will allow you to see all the threads and their details.
Screenshot attached.