C# 0 The Complete Reference


PART I C h a p t e r   1 1



Download 4,07 Mb.
Pdf ko'rish
bet389/1096
Sana23.01.2022
Hajmi4,07 Mb.
#402171
1   ...   385   386   387   388   389   390   391   392   ...   1096
Bog'liq
C-Sharp 3 The Complete Reference Herbert Schildt


PART I

C h a p t e r   1 1 :  

I n h e r i t a n c e  

299


PART IPART I

  public string name { get; set; }

  public void ShowDim() {

    Console.WriteLine("Width and height are " +

                       Width + " and " + Height);

  }


  public virtual double Area() {

    Console.WriteLine("Area() must be overridden");

    return 0.0;

  }


}

// A derived class of TwoDShape for triangles.

class Triangle : TwoDShape {

  string Style;

  // A default constructor.

  public Triangle() {

    Style = "null";

  }


  // Constructor for Triangle.

  public Triangle(string s, double w, double h) :

    base(w, h, "triangle") {

      Style = s;

  }

  // Construct an isosceles triangle.



  public Triangle(double x) : base(x, "triangle") {

    Style = "isosceles";

  }

  // Construct a copy of a Triangle object.



  public Triangle(Triangle ob) : base(ob) {

    Style = ob.Style;

  }

  // Override Area() for Triangle.



  public override double Area() {

    return Width * Height / 2;

  }

  // Display a triangle's style.



  public void ShowStyle() {

    Console.WriteLine("Triangle is " + Style);

  }

}

// A derived class of TwoDShape for rectangles.



class Rectangle : TwoDShape {

  // Constructor for Rectangle.

  public Rectangle(double w, double h) :

    base(w, h, "rectangle"){ }

www.freepdf-books.com



300

 

P a r t   I :  



T h e   C #   L a n g u a g e

  // Construct a square.

  public Rectangle(double x) :

    base(x, "rectangle") { }

  // Construct a copy of a Rectangle object.

  public Rectangle(Rectangle ob) : base(ob) { }

  // Return true if the rectangle is square.

  public bool IsSquare() {

    if(Width == Height) return true;

    return false;

  }

  // Override Area() for Rectangle.



  public override double Area() {

    return Width * Height;

  }

}

class DynShapes {



  static void Main() {

    TwoDShape[] shapes = new TwoDShape[5];

    shapes[0] = new Triangle("right", 8.0, 12.0);

    shapes[1] = new Rectangle(10);

    shapes[2] = new Rectangle(10, 4);

    shapes[3] = new Triangle(7.0);

    shapes[4] = new TwoDShape(10, 20, "generic");

    for(int i=0; i < shapes.Length; i++) {

      Console.WriteLine("object is " + shapes[i].name);

      Console.WriteLine("Area is " + shapes[i].Area());

      Console.WriteLine();

    }


  }

}

The output from the program is shown here:



object is triangle

Area is 48

object is rectangle

Area is 100

object is rectangle

Area is 40

object is triangle

Area is 24.5

object is generic

Area() must be overridden

Area is 0

www.freepdf-books.com




Download 4,07 Mb.

Do'stlaringiz bilan baham:
1   ...   385   386   387   388   389   390   391   392   ...   1096




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish