C# 0 The Complete Reference


PART I C h a p t e r   1 1



Download 4,07 Mb.
Pdf ko'rish
bet367/1096
Sana23.01.2022
Hajmi4,07 Mb.
#402171
1   ...   363   364   365   366   367   368   369   370   ...   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  

277


PART IPART I

When only the derived class defines a constructor, the process is straightforward: 

Simply construct the derived class object. The base class portion of the object is constructed 

automatically using its default constructor. For example, here is a reworked version of 



Triangle

 that defines a constructor. It also makes 



Style

 private since it is now set by the 

constructor.

// Add a constructor to Triangle.

using System;

// A class for two-dimensional objects.

class TwoDShape {

  double pri_width;

  double pri_height;

  // Properties for Width and Height.

  public double Width {

     get { return pri_width; }

     set { pri_width = value < 0 ? -value : value; }

  }


  public double Height {

     get { return pri_height; }

     set { pri_height = value < 0 ? -value : value; }

  }


  public void ShowDim() {

    Console.WriteLine("Width and height are " +

                       Width + " and " + Height);

  }


}

// A derived class of TwoDShape for triangles.

class Triangle : TwoDShape {

  string Style;

  // Constructor.

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

    Width = w;  // init the base class

    Height = h; // init the base class

    Style = s;  // init the derived class

  }


  // Return area of triangle.

  public double Area() {

    return Width * Height / 2;

  }


  // Display a triangle's style.

  public void ShowStyle() {

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

  }


}

www.freepdf-books.com




278

 

P a r t   I :  



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

class Shapes3 {

  static void Main() {

    Triangle t1 = new Triangle("isosceles", 4.0, 4.0);

    Triangle t2 = new Triangle("right", 8.0, 12.0);

    Console.WriteLine("Info for t1: ");

    t1.ShowStyle();

    t1.ShowDim();

    Console.WriteLine("Area is " + t1.Area());

    Console.WriteLine();

    Console.WriteLine("Info for t2: ");

    t2.ShowStyle();

    t2.ShowDim();

    Console.WriteLine("Area is " + t2.Area());

  }

}

Here, 




Download 4,07 Mb.

Do'stlaringiz bilan baham:
1   ...   363   364   365   366   367   368   369   370   ...   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