What is the difference between C++ & Java?
Answers were Sorted based on User's Feedback
Answer / firew tsegaye
the first difference is Java more reliable relative to c++.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / deepti iyer
c++ supports pointers,java do not
c++ supports procedural and object oriented
programming,wheras java support only object oriented
c++ has operator overloading,java has interfaces
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / abhishek khatod
java s a strongly typed language wheres C++ s nt..!!
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / hemantha kumar
JAVA IS PLATFORM INDEPENDENT.WE CAN RUN .class file in any
OS or any computer.
But c && C++ are platform dependent.i.e if .exe file
created in sp2 then it will not work in other Systems(OS).
&& IF ur processor is 8086 then the created .exe file will
work in 8086 processor only.
Fo r more information read AN INTGREATED APRROCH TO JAVA
(BLACK BOOK)
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / sarathi
C++ is console applications oriented and Java is Web Application Oriented.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / kishan
Can u show me any c++ program which is developed without
class or object?
| Is This Answer Correct ? | 17 Yes | 11 No |
Answer / komal
c++ uses destructor to deallocate memory.
java uses garbage collector for this purpose
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / surajit mishra
c++ is advanced version of c. so,it has procedure oriented
concept also it has object oriented concept but java has
truely object oriented concept.
Another difference is java is platform independent means it
can be accepted by any type of operating system but c++ is
not platform independent.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / radhika
c++ is not purely object oriented language .but Java is from 1.5 version ,it is purely object oriented language.
c++ is a language . Java is a language,and platform also.
c++ is platform dependent . Java is plat form independent .
c++ doest satisfy real time real time entities. but Java satisfies .
Java is more secured compare to c language because of rich hierarchic
| Is This Answer Correct ? | 5 Yes | 0 No |
Where is the find and replace?
Break statement can be used as labels in java?
Difference between Interface & Abstract class?
How do you get length in java?
Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
How does a for loop work?
what is difference between front controller and action servlet?
What is an example of character?
How to handle a web browser resize operation?
What is the properties class?
Why cant we define System.out.println() inside a class directly?