私有变量只有类本身能够改变,访问,一般用于限制变量的改变。
如下面的类,限制变量type只能从四种中选择。
namespace Csharp01
{
class Video
{
public string title;
public string author;
// 类型只能为“生活”、“教育”、“娱乐”、“其他”四种
private string type;
public Video(string title, string author, string type)
{
this.title = title;
this.author = author;
Type = type;
}
public string Type
{
get { return type; }
set
{
if (value == "生活" || value == "教育" || value == "娱乐" || value == "其他")
{
type = value;
}
else
{
type = "其他";
}
}
}
}
}
由于变量type不能直接改变,所以加入方法Type来进行设置。
// get、set使用
using Csharp01;
using System;
Video video1 = new Video("长江1号", "1号", "哈哈");
Video video2 = new Video("长江2号", "2号", "娱乐");
Console.WriteLine(video1.Type);
Console.WriteLine(video2.Type);
这样在实例化后,变量type的类型被限制为4种。
输出结果如下:
其他
娱乐
版权声明:本文为qq_56130624原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。