I'm new to .Net and I'm trying to understand the basics first. What is the difference between MSIL and Java bytecode?
|
6
|
|||
|
|
|
There are not that much differences. Both are intermediate formats of the code you wrote. When executed, the Virtual machines will execute the intermediate language managed that means that the Virtual Machine controls the variables and calls. There is even a language which I don't remeber right now that can run at .Net and Java the same way. Basicly, it's just another format for the same thing Edit: Found the language (besides Scala): It's FAN (http://www.fandev.org/), looks very interesting, but no time yet to evaluate |
||||
|
|
|
CIL aka MSIL is intended to be human-readable. Java bytecode is not. Think of Java bytecode as being machine code for hardware that does not exist (but which JVMs emulate). CIL is more like assembly language - one step from machine code, while still being human-readable. |
||||||
|
|
|
Agreed, the differences are minute enough to ingore as a beginner. If you want to learn .Net starting from the basics, I'd recommend looking at the Common Language Infrastructure, and the Common Type System. |
||
|
|
|
|
Serge Lidin authored a decent book on the details of MSIL: Expert .NET 2.0 IL Assembler. I also was able to pick up MSIL quickly by looking at simple methods using .NET Reflector and Ildasm (Tutorial). The concepts between MSIL and Java bytecode are very similar. |
||
|
|
|
|
They are essentially doing the same thing, MSIL is Microsoft's version of Java bytecode. The main differences internally are:
A lot more information and a detailed comparison can be found in this article by K John Gough (postscript document) |
||
|
|
|
|
First off let me say that I don't think that the subtle differences between Java bytecode and MSIL is something that should bother a novice .NET developer. They both serve the same purpose of defining an abstract target machine which is a layer above the physical machine being used in the end. MSIL and Java bytecode are very similar, in fact there is a tool called Grasshopper which translates MSIL to Java bytecode, I was part of the development team for Grasshopper so I can share a bit of my (faded) knowledge. Please note that I stopped working on this around when .NET framework 2.0 came out so some of these things may not be true any more (if so please leave a comment and I'll correct it).
There are other language differences but most of them are not expressed at the byte code level, for example if memory serves Java's non- |
|||
|
|
|
|
I think MSIL should not compare to Java bytecode, but "the instruction that comprise the Java bytecodes". There is no name of disassembled java bytecode. "Java Bytecode" should be an unofficial alias, as I cannot find its name in official document. The Java Class File Disassembler say
Both "Java VM instructions" and "MSIL" are assembled into .NET bytecode and Java code, which are not human readable. |
|||
|
|
