Is java is a fully object object oriented language?
Answer Posted / kailash karki
let me explain u all.
java is 100% oops. dont look at primitives cause java also created wrapper classes like Integer, Float etc. wrapper class is only created to remove this ambiguity. otherwise u tell me where u'l use Wrapper classes.
Integer a=new Integer(1);
Integer b=new Integer(2);
int c= a+b;
run and see, the a and b are two object and can be added without any error. cause internally all r treated as a object.(unboxing) . so no issue, java is purely 100% OOP
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does sprintf mean?
What is the difference between a scrollbar and a scrollpane?
What is the purpose of the system class in java?
What do you understand by the term wrapper classes?
Explain inner classes ?
Explain about features of local inner class?
Why does java not support pointers?
What is toarray method in java?
Is java same as core java?
What do you mean by flow of struts?
How do you ensure that n threads can access n resources without deadlock?
Difference between static binding and dynamic binding?
Why java is made?
What is the difference between length and size in java?
What happens if I remove static from main method?