+ 3
Whats the difference between java and c++
3 Answers
+ 8
C++:
https://en.wikipedia.org/wiki/C%2B%2B
Java:
https://en.wikipedia.org/wiki/Java_(programming_language)
Comparing C++ to Java:
https://en.wikipedia.org/wiki/Comparison_of_Java_and_C%2B%2B
+ 2
Java is a interpreter language.
Java works with it's JVM(java virtual machine).
When you write your code in java the compiler of java compile your code to a byte code then you can run your code with byte code on the linux/mac/windows/ and where ever that jre has installed on it.
Search WORA(Write Once Run Every where).
But C++ is a compiler language that compile your code directly to a code that understandable just for your machine.
+ 1
There is some difference in syntax, and java uses a virtual machine unlike cpp.