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.
我在这里看到了大量的编程语言。使用 JVM 的原因是什么?新的编程语言还有哪些其他选择?
字节码可以在任何带有 JVM 的系统上运行。如果您正在创建一种新语言或移植旧语言,您只需生成字节码(比真实机器的最佳代码简单得多)就可以了。
注意:如果您使用 JVM,则许多 JVM 端口会更快,并且在优化本机代码方面还有更多工作要做。