logo











Introduction to OOP. thumbnail

Introduction to OOP.


November 25, 2009

OOP is a design philosophy. It stands for Object Oriented Programming. In object oriented programming (OOP) you create a model for a real world system. Details:C# Schulung(German).

Before you can begin with OOP, it s essential to be acquainted with the terminology used.

Class
A class is the blueprint from which the objects are created. It represents the definition of our object. Remember a class is just template for an object. Used in:Windows Forms Schulung(German).

Object
An instance of a class is called object. It is a software bundle of variables and related methods. When a program is executed, objects act together with each other.

Behavior
Behaviors are things the object does, defined in the methods of the class. Software objects are modeled after real-world objects in that they have state and behavior.

State
All objects by definition have State and Behavior. For instance, the bird is flying, that’s the state of the bird.

Abstraction
Abstraction is the ability of a program to disregard the details of an object’s class and work at a more generic level when appropriate. It is the exclusion of the inessentials.

Encapsulation
Encapsulation hides the behavior of an object from its implementation. It is the packaging of several items together into one unit. This encapsulation is like a agreement between the implementer of the class and the user of that class. As such, encapsulation is a central principle of good software architecture. An excellent way to improve your company’s dotnet skills, is by booking a VB Schulung (German)}.

Comments are closed.