tag

home / developersection / tag

OOP (Object Oriented Programming)
oops 21-Jan-2017
OOP (Object Oriented Programming)

OOPs is a problem solvingmethodology. It decomposelarger program into smaller unit called classes. It is easy to use, modify Object orientation- Focu

Importance of the Inheritance
oops 23-Jul-2016
Importance of the Inheritance

In object oriented programming inheritance most important concepts of the programming language which is very useful and easy to use. When to use: You

Class Concepts in Java (Part-1)
java 13-May-2016
Class Concepts in Java (Part-1)

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

Encapsulation in Object Oriented Programming (OOPS)
java 13-May-2016
Encapsulation in Object Oriented Programming (OOPS)

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.

Information Hiding in Object Oriented Programming (OOPS)
java 13-May-2016
Information Hiding in Object Oriented Programming (OOPS)

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.

Features and Benefits of Object Oriented Programming (OOPS)
java 13-May-2016
Features and Benefits of Object Oriented Programming (OOPS)

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).

Packages in OOPS
java 02-May-2015
Packages in OOPS

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.

Interface E.g.
java 02-May-2015
Interface E.g.

interface Car {     // wheel revolutions per minute     void changeCadence(int newValue);     void changeGear(int newValue);     void spee

Interface in oops
java 30-Apr-2015
Interface in oops

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

IN OOPS NEXT COME CLASSES
java 28-Apr-2015
IN OOPS NEXT COME CLASSES

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

Object and class in java
java 14-Apr-2015
Object and class in java

Hi everyone in this blog we will learn about java object and classes.Introduction: Object in java:In object-oriented programming technique, we design

Inheritance in C++
.net 05-Feb-2015
Inheritance in C++

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