const和readonly
Posted cengjianwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了const和readonly相关的知识,希望对你有一定的参考价值。
const只能声明时初始化(使用时与静态变量相似)(编译时确定)
const int a = 1017;
const string s = "abcde";
const object o = null;
readonly可以声明时初始化,也可以在构造函数中赋值,也可以声明时初始化后构造函数重新赋值(运行时确定)
readonly int a = 1017;
static readonly string s;
以上是关于const和readonly的主要内容,如果未能解决你的问题,请参考以下文章
C++语言const_iterator和const iterator的区别,