码迷,mamicode.com
首页 > Windows程序 > 详细

C# 修饰符

时间:2018-09-23 15:05:05      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:class   私有   不可   code   ati   程序   而不是   cst   style   

如下图:

 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     }

 

C# 修饰符

标签:class   私有   不可   code   ati   程序   而不是   cst   style   

原文地址:https://www.cnblogs.com/xt112233/p/9692461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!