is java purely oop Language?
Answers were Sorted based on User's Feedback
Answer / swapna
java is not a pure object oriented .its partially object
oriented.object oriented means every thing should be used in
terms of objects.in java we use datatypes with out creating
any objects.using java we can do fully object oriented
programming.so its a partially object oriented.
Is This Answer Correct ? | 107 Yes | 20 No |
Answer / sujith
Perfect answer by Swapna. Java is not pure object oriented.
Data types are still not objects except String. I think the
only pure object oriented language still is smalltalk,
though i havent explored much with c#.
Is This Answer Correct ? | 45 Yes | 13 No |
Answer / vijay tandel
Java is not pure OOP Language because it uses primitive data
types.
Is This Answer Correct ? | 17 Yes | 3 No |
Answer / baalu aanand
No, because
1) data types not declaring by object except String, data
types are declaring in Literal types
2) It not support Multilevel inheritance
3) It does n't support operator overloading
So, java is not purely OOP concept
Is This Answer Correct ? | 15 Yes | 4 No |
Answer / ravi
no ,
java is not a purely object oriented language because it
doesnot support the feature multiple inhetiance .
it support the feature interface instead of multiple
inheritance
Is This Answer Correct ? | 23 Yes | 15 No |
Answer / mahaveer bhaskar
no, because it uses primitive data type
Is This Answer Correct ? | 10 Yes | 2 No |
Java is purely OOPL.primitives are simple datatypes in java
all the collections classes are uses wrapper class only not
a simple data types In all the applications we uses wrapper
class only not a primitives.we use primitives only for a
learning purpose and java supports native language that so
primitives still lives in java
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / girish
No,java is not pure object oriented language ,not
everything done by an object.Pure oopl is small talk.
Is This Answer Correct ? | 10 Yes | 7 No |
Answer / mathi
Java is not a pure oop lang. Smalltalk is a pure oop
language.
Is This Answer Correct ? | 9 Yes | 6 No |
Answer / vinay chowdary
According to oopl specification a language which considers
each and every component as an object.
1.But in java primitive datatypes are there so we can
consider java as not fullfledged oopl.
2.all of u guys plz think that java also providing wrapper
classes for each primitive,so can't it be full object
orientation(plz respond me on this point)
Is This Answer Correct ? | 3 Yes | 0 No |
Can a destructor be called directly?
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
What is abstraction in oop?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is difference between pop and oop?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
what is difference between thread and programme.
What is encapsulation c#?
How do you define a class in oop?
for example A,B,C,D are class all the 4 class contain one method who() but the method who() implementaion is differnet among each class. the relation among the 4 class are A is base class and is inherited by B and C.and from this two B and C where D is inherited. the question is i want to display the output who() method in all the classes(A,B,C,D)the output of who() method is diferrent amond all the class(A,B,C,D) ------A------ virtuval who(print a) override | | who(print b) B C override who(print c) | | -------D------ override who(print d)
what is polymorphism?
What is encapsulation?