C# 中的封装
csharpprogrammingserver side programming
C# 中的封装可防止访问实现细节。使用访问说明符在 C# 中实现封装。
以下是 C# 支持的访问说明符。
- Public
- Private
- Protected
- Internal
- Protected internal
可以通过私有访问说明符的示例来理解封装,该说明符允许类将其成员变量和成员函数隐藏在其他函数和对象中。
在下面的示例中,我们将长度和宽度作为分配了私有访问说明符的变量。
示例
using System; namespace RectangleApplication { class Rectangle { private double length; private double width; public void Acceptdetails() { length = 10; width = 15; } 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(); } } }
输出
Length: 10 Width: 15 Area: 150