C# 修饰符
2021-07-09 23:06
标签:class 私有 不可 code ati 程序 而不是 cst style 如下图: C# 修饰符 标签:class 私有 不可 code ati 程序 而不是 cst style 原文地址:https://www.cnblogs.com/xt112233/p/9692461.html 1 class Test1
2 {
3 public static string staticString =@"静态";//不可继承,只能在执行中修改(修改时是修改整个类中的此静态,而不是单一实例中)
4
5 public const string constString = @"常量";// 不可继承,不可修改
6
7 private string privateString = @"私有的"; //不可继承,禁止外部调用,只能在构造函数时或方法修改
8
9 protected string protectdeString = @"受保护的";//可以继承,只能用于本类和子类中,禁止外部调用
10
11 internal string internaiString = @"内部的"; //可以继承,只能运用于本程序集中
12
13
14 }