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.
似乎一个VM实例只能运行一个进程(真实的操作系统或VMware可以在其中运行多个进程)。
这样对吗?
javaJava 虚拟机的每个实例都是运行一些字节码的单个进程。在每个进程中,如果您需要一些并发性,您可以处理多个线程。如果你java的应用程序中绝对需要各种不同的进程,你可以使用ProcessBuilder和Process来启动一个新的子进程,对应一个新的 JVM 实例。
java