Home / DeveloperSection / Tag
You haven’t finished your post yet. Are you sure you want to leave and discard your draft?
OOPs is a problem solvingmethodology. It decomposelarger program into smaller unit called classes. It is easy to use, modify Object orientation- Focu
In object oriented programming inheritance most important concepts of the programming language which is very useful and easy to use. When to use: You
IntroductionA class is a template that encapsulates data and the methods that operate on this data, as in the Employee or Automobile class described e
Another big concept associated with object-oriented programming is encapsulation. Every class contains some data in its fields. We hide these fields by declaring them private. We define getter/setter methods to access them.
In our everyday life, many of us oftentimes try to hide information from other people. In many situations, the information hiding is an essential part of our life.
It is a good practice to provide a coupling between the data and the methods that operate on the data (method is another name for a function or a procedure, also called an operation).
A package is a namespace that organizes a set of related classes and interfaces. Conceptually you can think of packages as being similar to different folders on your computer.
I am thankful to all for reading my blogs and correct my mistake and suggest me much better about oops.I am going to discuss interface role in oops.We
Hope my earlier explanation about object is understood to everyone. Now, i am going to discuss next about classes. let us take e.g. from real worl
Hi everyone in this blog we will learn about java object and classes.Introduction: Object in java:In object-oriented programming technique, we design
In this blog, I’m explaining about Inheritance in C++ Inheritance is the ability to create a class from another class, the “parent” class, extending