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

C# const 和readonly

时间:2015-05-24 10:01:32      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

class Program 
    {
        public Program(int y)
        {
            this.y = y;
        }
        public const int x = 123;//默认是静态的值,在声明的时候必须初始化,引用类型只有string和null才能声明为const
        public readonly int y;//默认是实例成员,一般在声明的时候初始化或者是在类的构造函数里初始化。
        static void Main(string[] args)
        {
            Program pg = new Program(333);
            Console.WriteLine(pg.y);
            Console.ReadKey();
        }
    }

 

C# const 和readonly

标签:

原文地址:http://www.cnblogs.com/kkloveit/p/4525347.html

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