标签:使用 bcd 声明 font obj arch targe bsp 初始
const只能声明时初始化(使用时与静态变量相似)(编译时确定)
const int a = 1017;
const string s = "abcde";
const object o = null;
readonly可以声明时初始化,也可以在构造函数中赋值,也可以声明时初始化后构造函数重新赋值(运行时确定)
readonly int a = 1017;
static readonly string s;
标签:使用 bcd 声明 font obj arch targe bsp 初始
原文地址:https://www.cnblogs.com/Cengjianwei/p/11634159.html