• what's the differences between readonly & const in C# 在C#中readonly和const的区别


    1. the similar feature 相似性
       grammar:
        public const int x=100;
        public readonly int x;    
        const variable and readonly variable can not be modified once they are initialized in run-time. However,the main differences between them is the time to be initialized!
    const变量和readonly变量的值一旦被初始化其值在运行时就不能再改变。但是,他们之间的区别在于他们被初始化的时机是不一样的。

    2 the differences
        const variable must be initialized when it's be declared, because  its value is set in compile-time before the respective object is constructed. However, readonly can be initialized dynamically. that is to say, its value can be set via class constructor or vairable initiazer(no other feasible ways).
        const常量必须在其声明时被初始化,因为其值在编译而相应对象构造之前就被设定。但是 ,readonly可以被动态设定,其既可以在初始化时设定,也可以在构造函数中设定(其他方式均不可)。
       e.g
        public class A
        {
            public const m_x=100;

            //public const m_x=DataTime.Now.Tricks;
            //error!DataTime.Now.Tricks can not give a exact value for const variable in compile-time.
            public readonly long  m_y=DataTime.Now.Tricks;
            //it can be initialized via viriable initiazer

            public readonly int  m_z;
            public A()
            {
            m_z=DataTime.Now.Tricks;
            //it also can be initialized via constructor;
            }
        }
        
  • 相关阅读:
    JavaWeb_(Jar)使用fastjson解析json和序列化对象
    JavaWeb_JSTL标签数据的存储
    JavaWeb_EL表达式存储数据及获得项目路径
    JavaWeb_(MVC)管理员后台商品查询demo
    JavaWeb_(设计模式)单例模式
    JavaWeb_客户端相对/绝对路径和服务器端路径
    JavaWeb_Servlet生命周期
    控制导航条最后一个标签样式的三种方法
    JS跳转到顶部的方法
    数学对象Math ceil()、floor()、round()方法
  • 原文地址:https://www.cnblogs.com/Winston/p/1169427.html
Copyright © 2020-2023  润新知