JVM over CLR and vice versa

I have been using Java and .NET since many years, and I see many JVM and CLR implementations; many operating systems, many vendors, etc., but I ask here if anyone knows about implementing the CLR on the JVM or JVM on the CLR.

If such a bridge could be made, it should make the game more effective while working!

I know that there are several differences and much in common between the CLR and the JVM, but there are cross-compilers between two runitimes such as XMLVM, and perhaps this functionality can be provided at runtime ...

Is it possible? If not the main technical obstacles?

+6
source share
1 answer

IKVM.NET allows you to run Java byte code on top of the CLR (Mono or MS) and compile Java source code in the CLI, of course, library support can be a problem.

+1
source

Source: https://habr.com/ru/post/922202/


All Articles