It’s my understanding that the Java compiler produces “byte code”, not “object code”. First of all, is this correct?
Also, that’s just what my book says, I was wondering why this is correct. What is the difference between byte code and object code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Byte code is just the “object code” for the Java Virtual Machine. It’s not native code (e.g. x86). To be honest, I rarely hear the term “object code” these days – it’s generally clearer to talk in more specific terms.