Posts Tagged ‘objects’
Friday, June 9th, 2017
C# offers nested classes, which just like all the other nested programming concepts, implies a construct (class) defined inside the body of another construct (class). The class defined this way is called “inner class”, while the one which contains it, is called “outer class”.… Read more
Tags: class, inner class, nested classes, object oriented programming, objects, OOP
Posted in Objects | No Comments »
Thursday, May 18th, 2017
As we saw in the previous recent lessons, the usual way of communicating with a class is to create instances (copies) of it, and then use the resulting objects. In fact, that is the strong advantage of the classes – the ability to create copies that can be used and can be modified individually.… Read more
Tags: instantiation, object oriented programming, objects, OOP, singleton, static members
Posted in Objects | No Comments »
Wednesday, April 26th, 2017
I have explained a few times already that when we are dealing with objects, most of the times we are not working with the original class itself – the blueprint, but we are actually create copies of it called instances.… Read more
Tags: class, instantiation, new operator, object oriented programming, objects, OOP, operators
Posted in Objects | No Comments »
Saturday, April 22nd, 2017
At a definition level, classes are objects defined by the keyword class, followed by an identifier (name) and a body (code block), which contains the codes that define the object and its behavior.
Most of the times, classes can contain only four kind of elements:
- Fields – member variables of a certain type, defined at class level
- Properties – a special kind of programming constructs which helps us manipulate the fields, and set the properties of the object
- Methods – they implement the functionality of the object.
…
Read more
Tags: class, object oriented programming, objects
Posted in Objects | No Comments »
Saturday, April 22nd, 2017
Object oriented programming (OOP) is a programming paradigm, which uses objects and their interactions for building computer programs.
Through this concept, programming tries to simulate the real world. In real world, we can have objects like a car, an orange, a dog.… Read more
Tags: class, object oriented programming, object variable type, objects, OOP
Posted in Objects | No Comments »