can I run more than one JVM on my single PC?

前端 未结 7 1092
暖寄归人
暖寄归人 2020-12-14 23:07

Can I run more than one JVM? If yes then how can I find a particular class is loaded on which JVM?

7条回答
  •  北荒
    北荒 (楼主)
    2020-12-15 00:06

    It's not entirely clear what you mean, but:

    • You can have more than one VM (version / brand etc) installed on the same machine
    • You can run more than one java process, whether of the same JVM version or different ones

    Unless you're running a debugging agent or something similar, I don't know of any way to ask a JVM process whether it's loaded a particular class. It seems a bit of an odd requirement - why do you want to do this?

提交回复
热议问题