OOps
OOps
php/10925_3317571_3
http://syntaxhelp.com/CS.NET/read-appconfig-values
http://groups.google.com/group/mugh
http://www.dotnetspider.com/profiles/ProfileArticles.aspx?userId=CodeGuruDotNet
http://www.dotnetinterviewfaqs.com/oops-object-oriented-programming-concepts-faqs-job-interview-questions-
answers.aspx
http://www.c-sharpcorner.com/UploadFile/eecabral/OOPSand.NET111102005065802AM/OOPSand.NET1.aspx
http://www.dotnettreats.com/tipstricks/oopconcepts2.aspx
http://www.developer.com/net/csharp/article.php/1465681
http://en.wikipedia.org/wiki/Object-oriented_programming
http://www.webopedia.com/TERM/O/object_oriented_programming_OOP.html
http://searchsoa.techtarget.com/sDefinition/0,,sid26_gci212681,00.html
Concepts of OOP:
o Objects
o Classes
o Data Abstraction and Encapsulation
o Inheritance
o Polymorphism
Briefly on Concepts:
Objects
Objects are the basic run-time entities in an object-oriented system. Programming problem is analyzed in terms of
objects and nature of communication between them. When a program is executed, objects interact with each other by
sending messages. Different objects can also interact with each other without knowing the details of their data or
code.
Classes
A class is a collection of objects of similar type. Once a class is defined, any number of objects can be created which
belong to that class.
Abstraction refers to the act of representing essential features without including the background details or
explanations. Classes use the concept of abstraction and are defined as a list of abstract attributes.
Storing data and functions in a single unit (class) is encapsulation. Data cannot be accessible to the outside world
and only those functions which are stored in the class can access it.
Inheritance
Inheritance is the process by which objects can acquire the properties of objects of other class. In OOP, inheritance
provides reusability, like, adding additional features to an existing class without modifying it. This is achieved by
deriving a new class from the existing one. The new class will have combined features of both the classes.
Polymorphism
Polymorphism means the ability to take more than one form. An operation may exhibit different behaviors in different
instances. The behavior depends on the data types used in the operation. Polymorphism is extensively used in
implementing Inheritance.
Advantages of OOP