Oops introduction

Now a days every programing languages following oops methodology , so it is very important for you also to learn and understand object oriented programing(Oops). I am going to explain each and everything related to Oops by taking related examples and with proper clear cut explanations .

Any programing languages allows it's application to represent or store data in the form of objects is nothing but a object oriented programing languages.In order to set data in object we need to follow certain rule and regulations or you can say certain set of conventions,and this set of conventions is called as Oops features.Oops has seven number of features:
               1.Class
               2.Object
               3.Abstraction
               4.Polymorphism
               5.Inheritance
               6.Encapsulation
               7.Message Passing

I will discuss above features separately later on. Oops provide very good shareability and reusability and also very good abstraction and security to application .so how we achieve these features? If we follow all Oops feature correctly then we are able to create very good application like web applications , enterprise applications, standalone application, mobile applications.

In my next post I will discuss Oops features separately. Thanku guys.

No comments:

Post a Comment

Principles of Object Oriented Programming (OOP)

This article aims to explain the principles of Object-Oriented Programming in Java, using simple way to make it easier  to understand the fu...