• const VS readonly in detail


      We know both const and readonly can be used to define unchangeable variables,but what is the difference between'em since they are so similar to each other?

      There are a few points below:

      1.const variables must have a certain value in the compilation time, but for readonly variables, its value can be assigned in run time, for example,
    we can define a readonly variable and assign its value by this way:

        class foo
        {
            public readonly int a;
            public foo()
            {
                a = 10;
            }
        }
    
        or maybe this:
    
        class foo
        {
            public static readonly int a;
            static foo()
            {
                a = 10;
            }
        }

    As we can see, we can assign value to a readonly variable in the constructor,but you won't do this to a const variable.
    BTW: a class may have a static constructor, check it out on google

      2.basically, "const" is just simply a shortcut for "find & replace" when our code is being compiled.Think about this: we have two assamblies say ass1 and ass2, and there is a public const variable,for example "public const int a=10" in some class of ass1 while this const variable is used in another class of ass2. At first we compile these two assamblies and run it, we got the value of the const variable  and that certainly is 10. But now we change the value into 100, and recompile the ass1,guess what we got for the value of the const variable “a” ? 100? No,it's still 10. Why? Because the const variable "a" is replaced into "10" by "find & replace" when the ass2 being compiled, hence, if you don't recompile it, it will keep the value of "10" forever no matter the variable is changed or not in the ass1 where it is defined.
      But this situation won't happend to readonly variables, because the value of readonly variables "is settled down in run time" and it's not "find & replace", it's always referenced by ass2, so the ass2 can always get the newest value as soon as it changed in ass1.

      3.const variables are implicitly static and we can not put the keyword "static" on them, but readonly variables can be done so.We can use "ClassName.ConstName" notation to use public const variables in a class just like readonly variables which are static,if a readonly variable is NOT static, we can only use it by the instance of the class owning it.

  • 相关阅读:
    php date() 函数
    ajax接收遍历处理json格式数据
    textarea 滚动条属性设置
    $.each()和$(selector).each()
    PhpStorm快捷方式
    asp.net错误记录
    php checkbox 从数据库读取和写入
    php表单中如何获取单选按钮与复选按钮的值(示例)
    php一些单选、复选框的默认选择方法(示例)
    常用正则表达式:手机、电话、邮箱、身份证、IP地址、网址、日期等
  • 原文地址:https://www.cnblogs.com/lwhkdash/p/2973609.html
Copyright © 2020-2023  润新知