📜  只能执行一个进程 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:45.442000             🧑  作者: Mango

代码示例1
A single-threaded program is a program that only uses one thread. The process might have additional threads; for your example of the Java runtime, you can expect to have a finalizer thread and perhaps one or more threads for garbage collection. It's a single-threaded program running in a multi-threaded process.