Is java is really a pure object oriented? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is java is really a pure object oriented?

18th Feb 2019, 4:34 PM
George Fernandes
George Fernandes - avatar
3 Answers
+ 8
Java did not invent the idea of Object Oriented Programming. In fact OOP dates back to the late 60’s, but the Java language designers did a great job implementing the idea in the language in such a way that it is practical and productive for the programmer.
18th Feb 2019, 6:02 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 4
Java is a Object Oriented language. This means that you design your code around unit of codes called "objects" which loosely resemble real-world object (or concepts). So if you were to write, say, a library management software you'll most likely have these code objects representing books, members, staff but also more abstract concepts such as genre and loan. This happens to be a very neat way to organize software (and your thoughts). Instead of thinking about your system as a big line-by-line, step-by-step algorithm, you think of it as a set of interacting objects. If done right, each one of these objects can be reasoned about independently from other objects. Each object can be tested in isolation from others and each one can be extended without necessarily affecting the entire system.
18th Feb 2019, 7:26 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 1
With the introduction of java 8 several years ago, java also has functional programming aspects. Check out the following website for more info: https://www.tutorialspoint.com/java8/java8_overview.htm
18th Feb 2019, 4:49 PM
Lambda_Driver
Lambda_Driver - avatar