What are advantages of bytecode over native code?

2020-01-27 02:14发布

It seems like anything you can do with bytecode you can do just as easily and much faster in native code. In theory, you could even retain platform and language independence by distributing programs and libraries in bytecode then compiling to native code at installation, rather than JITing it.

So in general, when would you want to execute bytecode instead of native?

8条回答
小情绪 Triste *
2楼-- · 2020-01-27 02:37

Here: http://slashdot.org/developers/02/01/31/013247.shtml

Go see what the geeks of Slashdot have to say about it! Little dated, but very good comments!

查看更多
Deceive 欺骗
3楼-- · 2020-01-27 02:42

Portability and platform independence are probably the most notable advantages of bytecode over native code.

查看更多
登录 后发表回答