Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 java 中创建一个线程时,为一个线程设置一个name和有什么好处?thread group我可以在LogCat(在android中)监控它吗?
name
thread group
LogCat
设置名称的好处主要是用于记录目的。
设置线程组的好处是你可以使用ThreadGroup它的方法。
ThreadGroup
我还要补充一点,除了日志记录之外,它还有助于调试 - 当您查看 jstack / jvisualvm 中的线程时,更容易看到每个线程是什么。