如何在 C# 中创建新对象?


与任何其他面向对象语言一样,C# 中也具有对象和类。对象是现实世界中的实体,也是一种类的实例。使用对象访问此类的成员。

要访问类成员,你需要在对象名称后使用点(.)运算符。点运算符将对象名称与成员名称关联起来,例如,

Box Box1 = new Box();

在上面你可以看到 Box1 是对象。我们使用它来访问成员 -

Box1.height = 7.0;

你还可以使用它调用成员函数 -

Box1.getVolume();

下面是一个展示 C# 中的对象和类如何工作的示例 -

示例

 动态演示

using System;

namespace BoxApplication {
   class Box {
      private double length; // Length of a box
      private double breadth; // Breadth of a box
      private double height; // Height of a box

      public void setLength( double len ) {
         length = len;
      }

      public void setBreadth( double bre ) {
         breadth = bre;
      }

      public void setHeight( double hei ) {
         height = hei;
      }

      public double getVolume() {
         return length * breadth * height;
      }
   }

   class Boxtester {
      static void Main(string[] args) {
         // Creating two objects
         Box Box1 = new Box(); // Declare Box1 of type Box
         Box Box2 = new Box();
         double volume;

         // using objects to call the member functions
         Box1.setLength(6.0);
         Box1.setBreadth(7.0);
         Box1.setHeight(5.0);

         // box 2 specification
         Box2.setLength(12.0);
         Box2.setBreadth(13.0);
         Box2.setHeight(10.0);

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

         // volume of box 2
         volume = Box2.getVolume();
         Console.WriteLine("Volume of Box2 : {0}", volume);

         Console.ReadKey();
      }
   }
}

输出

Volume of Box1 : 210
Volume of Box2 : 1560

更新日期:2020-06-20

87 人次浏览

开启您的职业生涯

完成课程并获得认证

开始
广告