C# 中如何实现封装?

csharpprogrammingserver side programming更新于 2025/5/28 12:07:17

使用访问说明符实现封装。访问说明符定义类成员的范围和可见性。C# 支持以下访问说明符:Public、Private、Protected、Internal、Protected internal 等。

可以通过私有访问说明符的示例来理解封装,该说明符允许类向其他函数和对象隐藏其成员变量和成员函数。

在下面的示例中,我们将长度和宽度作为分配了私有访问说明符的变量 −

示例

using System;

namespace RectangleApplication {
   class Rectangle {
      private double length;
      private double width;

      public void Acceptdetails() {
         length = 20;
         width = 30;
      }

      public double GetArea() {
         return length * width;
      }

      public void Display() {
         Console.WriteLine("Length: {0}", length);
         Console.WriteLine("Width: {0}", width);
         Console.WriteLine("Area: {0}", GetArea());
      }  
   }

   class ExecuteRectangle {
      static void Main(string[] args) {
         Rectangle r = new Rectangle();
         r.Acceptdetails();
         r.Display();
         Console.ReadLine();
      }
   }
}

相关文章