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.
我一直在对线程进行一些研究,似乎我迷路了。我想知道什么是主线程和子线程。它们是如何制作的?他们之间有什么区别。
“主”线程是为您创建的,它调用public static void main(String[] args)
public static void main(String[] args)
“子”线程是您从主线程或其他线程创建的线程。
当您从当前线程创建新线程时,当前线程将是 ,parent thread而新线程将是child thread。
parent thread
child thread
首先运行的主类称为main thread. 主线程通常是应用程序所有线程的父线程。
main thread