What are the similarities between c++ and Java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are the similarities between c++ and Java?

14th Jun 2017, 4:42 PM
Sreejith P
Sreejith P - avatar
3 Answers
+ 17
Truly speaking, there are a way too many similarities just because Java is actually derived from C++. Finiding similarities between two programming languages is not a difficult thing to do, maybe finding differences matter! Now if I answer your question well, here's the comparison between these two, almost 47 points which makes sense : http://www.javacoffeebreak.com/articles/thinkinginjava/comparingc++andjava.html Something which inspires to learn c++ : http://www.dickbaldwin.com/java/Java008.htm
14th Jun 2017, 5:13 PM
Dev
Dev - avatar
+ 3
concepts same variables functions oop just some differences if you know java when you learn cpp you don't learn concepts again else in both you must declare types etc
14th Jun 2017, 5:54 PM
Abdur-Rahmaan Janhangeer
Abdur-Rahmaan Janhangeer - avatar
+ 3
Java is pure OOP (entry point is a method), C++ is multi-paradigm (entry point is still main()). C++ supports multiple inheritance whereas Java doesn't (IIRC). Java manages a lot for you and wipes your bum, C++ lets you shoot yourself in the foot. Java (traditionally) compiles to java bytecode, C++ compiles to x86, ARM, AMD64, MIPS...blah. C++ is more flexible and dangerous, Java is safer, stricter, and less flexible. C++ is more general purpose, Java is specifically for relatively rapid app development. It's a case of flexibility vs safety. I started Java years back but never really got into it. C++ I started, not wanting to learn it because I was a C purist, but already just the little I know has me wishing I'd started C++ years back. But really the syntax is C-alike in both cases. That's all I know as a student. A master could answer better.
15th Jun 2017, 12:50 AM
Jamie
Jamie - avatar