C#中的封装是如何实现的?

来源:这里教程网 时间:2026-02-21 16:23:27 作者:

c#中的封装是如何实现的?

封装是通过使用访问说明符来实现的。访问说明符定义类成员的范围和可见性。 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();
      }
   }
}

相关推荐