+ 3
What are the major differences between java and c++
5 Antworten
+ 2
put it this way. assembly is the father of modern languages, c++ is the cute smart kid and Java is the half retarded kid
+ 2
@Elio I personally like Assembly and C .
it's only when you learn Assembly that you really understand what a computer is .
+ 2
Both Java and C++ support object oriented programming, yet there are differences between them. To begin with, Java is a pure object oriented programming language; therefore, everything is an object in Java (single root hierarchy as everything gets derived from java.lang.Object ).
+ 1
the most notable difference is that java use Java Virtual Machine
to run your program, which makes it run on many platforms without changing your code .
C++ compiles your code to an executable binary that will only work on the CPU architecture that is compiled for . example ARM or 32bit 64bit .
sure there are other differences I can't list them all .
+ 1
@bahhax404 could not agree with you more. I love assembly, you really feel the power!