object-oriented programming: the concepts.
Posted Under: News From The WWW
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:.NET C# Schulung(German).
To be able to use OOP you need to know the concepts of Object Oriented Programming.
Class
The primary concept that you will need to learn is called a “class.” A class is a blueprint used to construct objects. It contains member functions for the behavior and member variables for the state. What this basically means is that we supply a blueprint, or an outline of an object. Used in:Webanwendungen mit ASP.NET(German).
Object
An object can be defined as a specific instance of a class. It is a software bundle of variables and related methods. Objects are the basic run-time entities in an object-oriented system.
Behavior
The behavior of objects is defined in member-functions. Software objects are modeled after real-world objects in that they have state and behavior.
State
The state is what data the object holds. As an example, the bird is flying, that’s the state of the bird.
Abstraction
Abstraction refers to the act of representing fundamental features without including the background details or explanations. It solves the problem in the design side while encapsulation is the implementation.
Encapsulation
Encapsulation is storing data and functions in a class. It combines one or more information into a component. The idea behind encapsulation is to keep the data separate from the code. This is sometimes called data hiding. As such, encapsulation is a central principle of good software architecture. An excellent way to improve your company’s C-Sharp skills, is by booking a VB Schulung (German)}.




