• 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.

  • 相关阅读:
    [原]poj-2680-Choose the best route-dijkstra(基础最短路)
    [转]c/c++输入函数
    [原]poj-2524(裸并查集)
    [原]poj-1611-The Suspects(水并查集)
    ccnu-线段树-简单的区间更新(三题)
    团队博客(3)
    个人NABCD
    团队博客(2)
    团队博客(1)
    课堂练习:返回一个二维数组中最大子数组的和
  • 原文地址:https://www.cnblogs.com/lwhkdash/p/2973609.html
Copyright © 2020-2023  润新知