<< Chapter < Page
  Xna game studio     Page 5 / 12
Chapter >> Page >

What is an assembly?

You can learn more about an assembly here . Frankly, I'm not absolutely certain at this time how to interpret the access levels of internal and protected internal . However, I believe that an assembly in C# is similar to a package in Java, and if so, thenI do know how to interpret these two access levels.

Public, private, and protected

To a first approximation, you can probably guess what public and private mean. Public members are accessible by all code that has access to an object of the class. Private members are accessible only by members belonging to the class.

The protected keyword is used to provide inherited classes with special access to the members of their base classes.

A public user interface

In general, the user interface for a class consists of the public methods.

The variables in a class can also be declared public but this is generally considered to be bad programming practice unless theyare actually constants.

For a properly designed class, the class user stores, reads, and modifies values in the object's data by calling the public methods on a specific instance (object) of the class. (This is sometimes referred to assending a message to the object asking it to change its state).

Normally, if the class is properly designed and the implementation is hidden, the user cannot modify the values contained in the private instance variables ofthe object without going through the prescribed public methods in the interface.

A set Accessor method

C# has a special form of method, often called a set Accessor method. The use of this type of method makes it appear that an assignment is being madeto store a value in a private instance variable belonging to an object when in fact, the assignment operation is automatically converted to a call to a set Accessor method. I discuss this more fully in my earlier tutorial titled Learning C# and OOP, Properties, Part 1 . I will also show an example of a set Accessor method later.

A get Accessor method

C# also has a special form of method often called a get Accessor method that operates like a set Accessor method but in the reverse direction. A get Accessor method makes it appear that the value of a private instance variable can be obtained by referencing the name of the objectjoined to the name of the variable. In fact, that reference is automatically converted to a call to a get Accessor method.

Not a good design by default

An object-oriented design is not a good design by default. In an attempt to produce good designs, experienced object-oriented programmers generally agree oncertain design standards for classes. For example, the data members (instance variables) are usually private unless they are constants. The user interfaceusually consists only of public methods and includes few if any data members.

Of course, there are exceptions to every rule. One exception to this general rule is that data members that are intended to be used as symbolic constants aremade public and defined in such a way that their values cannot be modified.

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