
- Forum
- Programming Talk
- Java
- Is Java 100% oops language?
Is Java 100% oops language?
This is a discussion on Is Java 100% oops language? within the Java forums, part of the Programming Talk category; As per my knowledge java is not fully object oriented language....
-
As per my knowledge java is not fully object oriented language.
-
09-30-2008, 03:01 PM #12
- Join Date
- Sep 2008
- Answers
- 2
Depends on coding
Java can be an object oriented language when we create program and in this program if we use only user defined type.
The program without built in type can be object oriented program.
-
Java is not 100% OOPs lanaguage, because java doesnt support the Multiple Inheritance..
-
Nice Info
Hi,
Thanks for sharing your ideas and views with us. I'm a new one in this forum. Please keep updating me.
CSK
Job Search
-
YES Java is a 100 object oriented..It does support multiple inheritance directly instead of that we can use interfaces..with the help of interface implicitly we can use multiple inheritance so it is 100 object oriented

-
No java is not 100% oop program.. because
1.java still has
primitive data type which violates the above said
statement....
2.It doesnot support Multiple inheritance.
3.It allows static methods to call without creating the
instance. This disobeys OOPs concepts.
-
Java is not 100% oop
My openion is Java is not 100% OOP language.It contains static classes static fileds which are not at all belongs to the Object.Is it correct?
-
03-27-2010, 07:27 AM #18
- Join Date
- Mar 2010
- Location
- bangalore
- Answers
- 1
Someone Says java is not 100% oops becz, int,float etc primitive datatypes are not objects. But java implemented Wrapper classes for this primitive Types to make them in to object types.
So java is 100% oops .
Sorry i am wrong and comments are welcome
-
Java is an OOP language but not a pure Object Oriented Programming Language.There are six qualities to make a programming language to be pure Object Oriented. They are:
i) Encapsulation/Data Hiding
ii) Inheritance
iii) Polymorphism
iv) All predifined types are objects
v) All operations are performed by sending messages to objects and
vi) All user defined types are objects.
Primitive data types, such as int, char, boolean are not Objects, which are used by Java. It is why Java is not a "pure object oriented programming language".
-
04-16-2010, 07:42 AM #20
- Join Date
- Apr 2010
- Answers
- 1
i think itz purely object oriented cauz in java can u do any thing without making any object?????
-
Sponsored Ads

Reply With Quote





