C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のクラス


データ型のブループリントは、C#でクラスと呼ぶことができるものです。オブジェクトはクラスのインスタンスです。クラスを構成するメソッドと変数は、クラスのメンバーと呼ばれます。

以下は、C#のクラスの一般的な形式です-

<access specifier> class class_name {
   // member variables
   <access specifier><data type> variable1;
   <access specifier><data type> variable2;
   ...
   <access specifier><data type> variableN;
   // member methods
   <access specifier><return type> method1(parameter_list) {
      // method body
   }
   <access specifier><return type> method2(parameter_list) {
      // method body
   }
   ...
   <access specifier><return type> methodN(parameter_list) {
      // method body
   }
}

C#でクラスを作成する方法を学ぶための例を見てみましょう-

using System;

namespace Demo {
   class Box {
      public double length; // Length of a box
      public double breadth; // Breadth of a box
      public double height; // Height of a box
   }

   class Boxtester {
      static void Main(string[] args) {
         Box Box1 = new Box(); // Declare Box1 of type Box
         Box Box2 = new Box(); // Declare Box2 of type Box
         double volume = 0.0; // Store the volume of a box here

         // box 1 specification
         Box1.height = 5.0;
         Box1.length = 6.0;
         Box1.breadth = 7.0;

         // box 2 specification
         Box2.height = 10.0;
         Box2.length = 12.0;
         Box2.breadth = 13.0;

         // volume of box 1
         volume = Box1.height * Box1.length * Box1.breadth;
         Console.WriteLine("Volume of Box1 : {0}", volume);

         // volume of box 2
         volume = Box2.height * Box2.length * Box2.breadth;
         Console.WriteLine("Volume of Box2 : {0}", volume);
         Console.ReadKey();
      }
   }
}

出力

Volume of Box1 : 210
Volume of Box2 : 1560

  1. C#のコンソールクラス

    C#のConsoleクラスは、コンソールアプリケーションの標準の入力、出力、およびエラーストリームを表すために使用されます。 C#のコンソールクラスプロパティの例をいくつか見てみましょう- Console.CursorLeftプロパティ C#でコンソールのCursorLeftを変更するには、Console.CursorLeftプロパティを使用します。 例 例を見てみましょう- using System; class Demo {    public static void Main (string[] args) {       Cons

  2. C#のクラスのメンバー関数とは何ですか?

    クラスのメンバー関数は、他の変数と同様に、クラス定義内にその定義またはプロトタイプを持つ関数です。メンバーであるクラスのオブジェクトを操作し、そのオブジェクトのクラスのすべてのメンバーにアクセスできます。 以下はメンバー関数の例です- public void setLength( double len ) {    length = len; } public void setBreadth( double bre ) {    breadth = bre; } 以下は、C#でメンバー関数にアクセスする方法を示す例です。 例 using System