Beginner s C# Tutorial
4 pages
English

Beginner's C# Tutorial

-

Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres
4 pages
English
Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres

Description

B E G I N N E R S C # T U T O R I A LL E S S O N 9 - P O LY M O R P H I S M BEGINNERS’S C # T U T O R I A L9 . P O L Y M O R P H I S MW R I T T E N B Y J O E M A Y OJ M A Y O @ C S H A R P – S T A T I O N . C O MU P D A T E D 1 5 / 0 1 / 0 1 , 1 2 / 0 3 / 0 3C O N V E R T E D T O P D F B Y A S H W E A V E R 0 2 / 0 9 / 0 3W W W . C S H A R P – S T A T I O N . C O M P A G E 1 O F 4C O P Y R I G H T © 2 0 0 0 – 2 0 0 3 C # S T A T I O N , A L L R I G H T S R E S E R V E DB E G I N N E R S C # T U T O R I A LL E S S O N 9 - P O LY M O R P H I S M This lesson teaches about Polymorphism in C#. Our objectives are as follows: Learn What Polymorphism Is. Implement a Virtual Method. Override a Virtual Method. Use Polymorphism in a Program. Another primary concept of object-oriented programming is Polymorphism. It allows you to implement derived class methods through a base class pointer during run-time. This is handy when you need to assign a group of objects to an array and then invoke each of their methods. They won't necessarily have to be the same object type. However, if they're related by inheritance, you can add them to the array as the inherited type. Then if they all share the same method name, that method of each object can be invoked. This lesson will show you how to accomplish this. Listing 9-1. A Base Class With a Virtual Method: DrawingObject.cs using System; public class DrawingObject {public virtual void ...

Informations

Publié par
Nombre de lectures 105
Langue English

Extrait

B E G I N N E R SC #T U T O R I A L L E S S O N9  PO LY M O R P H I S M
B E G I N N E R S ’ S C #T U T O R I A L 9 .P O L Y M O R P H I S M
W R I T T E NB YJ O EM A Y O J M A Y O @ C S H A R P – S T A T I O N . C O M U P D A T E D1 5 / 0 1 / 0 1 ,1 2 / 0 3 / 0 3
C O N V E R T E DT OP D FB YA S HW E A V E R0 2 / 0 9 / 0 3
W W W . C S H A R P – S T A T I O N . C O M
P A G E1 OF 4 C O P Y R I G H T© 20 0 0 – 2 0 0 3C #S T A T I O N, AL LR I G H T SR E S E R V E D
B E G I N N E R SC #T U T O R I A L L E S S O N9  PO LY M O R P H I S M
This lesson teaches about Polymorphism in C#.Our objectives are as follows:
Learn What Polymorphism Is. Implement a Virtual Method. Override a Virtual Method. Use Polymorphism in a Program.
Another primary concept of object-oriented programming is Polymorphism. Itallows you to implement derived class methods through a base class pointer during run-time.This is handy when you need to assign a group of objects to an array and then invoke each of their methods.They won't necessarily have to be the same object type.However, if they're related by inheritance, you can add them to the array as the inherited type. Thenif they all share the same method name, that method of each object can be invoked.This lesson will show you how to accomplish this.
Listing 9-1.A Base Class With a Virtual Method: DrawingObject.cs
usingSystem; publicclassDrawingObject { publicvirtualvoidDraw()  { Console.WriteLine("I'm just a generic drawing object.");  } }
Listing 9-1 shows theDrawingObjectclass. Thiswill be the base class for other objects to inherit from.It has a single method namedDraw(). The Draw()method has avirtualmodifier. Thevirtualmodifier indicates to derived classes that they can override this method.TheDraw()method of theDrawingObjectclass performs a single action of printing the statement, "I'm just a generic drawing object.", to the console.
Listing 9-2.Derived Classes With Override Methods:Line.cs, Circle.cs, and Square.cs
usingSystem; publicclassLine : DrawingObject { publicoverridevoidDraw()  { Console.WriteLine("I'm a Line.");  } }
publicclassCircle : DrawingObject { publicoverridevoidDraw()
P A G E2 OF 4 C O P Y R I G H T© 20 0 0 – 2 0 0 3C #S T A T I O N, AL LR I G H T SR E S E R V E D
B E G I N N E R SC #T U T O R I A L L E S S O N9  PO LY M O R P H I S M
{ Console.WriteLine("I'm a Circle.");  } }
publicclassSquare : DrawingObject { publicoverridevoidDraw()  { Console.WriteLine("I'm a Square.");  } }
Listing 9-2 shows three classes.These classes inherit theDrawingObjectclass. Eachclass has aDraw()method and eachDraw()method has an overridemodifier. Theoverridemodifier allows a method tooverridethe virtualmethod of its base class at run-time.Theoverridewill happen only if the class is referenced through a base class reference.Overriding methods must have the same signature, name and parameters, as the virtualbase class method it is overriding.
Listing 9-3.Program Implementing Polymorphism:DrawDemo.cs
usingSystem; publicclassDrawDemo { publicstaticintMain( )  { DrawingObject[] dObj =newDrawingObject[4]; dObj[0] =newLine();  dObj[1]=newCircle();  dObj[2]=newSquare();  dObj[3]=newDrawingObject(); foreach(DrawingObject drawObjindObj)  { drawObj.Draw();  }
return0;  } }
Listing 9-3 shows a program that uses the classes defined in Listing 9-1 and Listing 9-2.This program implements polymorphism.In theMain()method of theDrawDemoclass, there is an array being created.The type of object in this array is theDrawingObjectarray is namedclass. ThedObjand is being initialized to hold four objects of typeDrawingObject.
Next thedObjBecause of their inheritance relationshiparray is initialized. with theDrawingObjectclass, theLine,Circle, andSquareclasses can be assigned to thedObjarray. Withoutthis capability, you would have to
P A G E3 OF 4 C O P Y R I G H T© 20 0 0 – 2 0 0 3C #S T A T I O N, AL LR I G H T SR E S E R V E D
B E G I N N E R SC #T U T O R I A L L E S S O N9  PO LY M O R P H I S M
create an array for each type.Inheritance allows derived objects to act like their base class, which saves work.
After the array is initialized, there is aforeachloop that looks at each element of the array.Within theforeachloop theDraw()method is invoked on each element of thedObjof polymorphism, the run-timearray. Because type of each object is invoked.The type of the reference object from the dObjarray is aDrawingObject. However,that doesn't matter because the derived classesoverridethevirtualDraw()method of theDrawingObjectclass. Thismakes the overridenDraw()methods of the derived classes execute when theDraw()method is called using theDrawingObjectbase class reference from thedObjarray. Here'swhat the output looks like: Output: I'm a Line. I'm a Circle. I'm a Square.
I'm just a generic drawing object.
TheoverrideDraw()method of each derived class executes as shown in the DrawDemoprogram. Thelast line is from thevirtualDraw()method of the DrawingObjectis because the actual run-time type of the fourthclass. This array element was aDrawingObjectobject.
The code in this lesson can be compiled with the following command line:
 cscDrawDemo.cs DrawingObject.cs Circle.cs Line.cs Square.cs
It will create the fileDrawDemo.exe, which defaulted to the name of the first file on the command line.
In summary, you should now have a basic understanding of polymorphism. Youknow how to define avirtualcanmethod. You implement a derived class method that overrides avirtualmethod. This relationship betweenvirtualmethods and the derived class methods that overrideThis lesson showed how to use thisthem enables polymorphism. relationship between classes to implement polymorphism in a program.
P A G E4 OF 4 C O P Y R I G H T© 20 0 0 – 2 0 0 3C #S T A T I O N, AL LR I G H T SR E S E R V E D
  • Univers Univers
  • Ebooks Ebooks
  • Livres audio Livres audio
  • Presse Presse
  • Podcasts Podcasts
  • BD BD
  • Documents Documents