方法 : クラスから継承する (Visual C#)

更新 : 2007 年 11 月

この例では、いずれも Shape クラスを継承する、Circle クラスと Rectangle クラスを定義します。また、Rectangle クラスを継承する Square クラスを定義します。

使用例

public class Shape
{
    // Definitions of properties, methods, fields, and events.
}
public class Circle : Shape
{
    // Specialized properties, methods, fields, events for Circle.
}
public class Rectangle : Shape
{
    // Specialized properties, methods, fields, events for Rectangle.
}
public class Square : Rectangle
{
    // Specialized properties, methods, fields, events for Square.
}

コードのコンパイル方法

  • 新しいコンソール アプリケーションを起動します。

  • コードをコピーして、Class1 宣言の直前または直後に貼り付けます。

堅牢性の高いプログラム

継承するクラスがシール クラスでないことを確認してください。

参照

概念

C# 言語の概要

その他の技術情報

Visual C# Express