OOPS Tutorial - For Beginners & Professionals
oops recipes,oops tips, oops tricks, oops tips & tricks, oops internal, oops principle,class object and polymorphism
Posted By : Shailendra Chauhan, 21 Oct 2013
Updated On : 21 Oct 2013
The process of extracting common characteristics from two or more classes and combining them into a generalized superclass, is called Generalization. The common characteristics can be attributes or methods. Generalization is represented by a triangle followed by a line.
Posted By : Shailendra Chauhan, 21 Oct 2013
Updated On : 21 Oct 2013
Inheritance is a mechanism of acquiring the features and behaviors of a class by another class. The class whose members are inherited is called the base class, and the class that inherits those members is called the derived class. Inheritance implements the IS-A relationship.
Posted By : Shailendra Chauhan, 27 Aug 2013
Updated On : 10 Feb 2014
A relationship defines the connection between objects. This explains how objects are connected to each other’s and how they will behave.
Posted By : Shailendra Chauhan, 17 Jun 2012
Updated On : 17 Jun 2012
Object oriented and Object based programming languages have some different features and behaviour. In this article, I am going to expose the main difference between these two programming languages.
Posted By : Shailendra Chauhan, 17 Jun 2012
Updated On : 17 Jun 2012
In programming langauages we have two concepts functions and methods. functions are defined in structural language and methods are defined in object oriented langauge. The difference between both is given below :
Posted By : Shailendra Chauhan, 15 Feb 2011
Updated On : 10 Jul 2012
OOP is a design philosophy. It stands for Object Oriented Programming. Object-Oriented Programming (OOP) uses a different set of programming languages than old procedural programming languages (C, Pascal, etc.). Everything in OOP is grouped as self sustainable "objects". Hence, you gain re-usability by means of four main object-oriented programming concepts.