<< Chapter < Page Chapter >> Page >

For example the object-oriented programmer defines an abstract data type by encapsulating its implementation and its interface in a class.

One or more instances of the class can then be created or instantiated .

An instance of a class is known as an object .

Every object has state and behavior where the state is determined by the current values stored in the object's instance variables and the behavior is determined by the instance methods belonging to the object.

Inherited abstract data types are derived classes or subclasses of base classes or super classes. We extend super classes to create subclasses.

Within the program the code instantiates objects (creates instances of classes) and sends messages to the objects by calling the class's methods (or member functions ).

If a program is "object oriented", it uses encapsulation , inheritance , and polymorphism . It defines abstract data types, encapsulates those abstract data types into classes, instantiates objects fromthe classes, and sends messages to the objects.

The members of a class fall generally into one of the following categories:

  • Constructors
  • Properties
  • Methods
  • Events

The individual members of a class can be public , private , or protected .

To make things even more confusing, almost every item or action used in the OOP jargon has evolved to be described by several different terms. For example, we can cause an object to change its state by sending it a message, calling its methods, or calling its member functions. The term being used oftendepends on the author who wrote the specific book that you happen to be reading at the time.

Hopefully most of this terminology will become clear as we pursue these modules

Discussion and sample code

I usually try to provide some code in each module that you can compile and execute. Listing 2 contains the C# code for a simple program that will display the words "Hello C# World" on the system console screen when youcompile and run it. (The system console screen will probably appear as a black window when you run the program.)

Listing 2 . Hello World in C#.

//File Program.cs using System;namespace Hello01{ class Hello01{static void Main(string[] args){Console.WriteLine("Hello C# World"); //Press any key to dismiss console screen.Console.ReadKey(); }//end Main}//end class definition }//end namespace

You can learn a lot...

You may be surprised at how much you can learn about the structure and syntax of an object-oriented program in C# by taking this simple program apart andexamining the elements of the program. Note, however, that this program is strictly class based. It does not instantiate any objects .

A new class definition

The central block of code beginning with the word class defines a new class named Hello01 .

The Main method

You probably learned that every C++ program requires a function named main . Execution of the C++ program begins and ends in the main function.

The same is true in C#. Every C# program requires a method named Main (note the upper-case "M") . However, unlike in C++, the Main method in C# must be defined inside of a class definition.

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Xna game studio. OpenStax CNX. Feb 28, 2014 Download for free at https://legacy.cnx.org/content/col11634/1.6
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Xna game studio' conversation and receive update notifications?

Ask