标签:html log 函数 学习资料 根据 col 资料 对象 构造函数
【学习资料】
《C#图解教程》(第6章):https://www.cnblogs.com/moonache/p/7687551.html
电子书下载:https://pan.baidu.com/s/1mhOmBG0
【内容】
【笔记】
public class Person { public const int a1 = 0; // const public readonly int a2 = 0; // readonly public static readonly int a3 = 0; // static readonly // 静态构造函数 static Person() { //a1 = 1; // 错误 //a2 = 2; // 错误 a3 = 3; // 正确 } // 构造函数 public Person() { //a1 = 1; // 错误 a2 = 2; // 正确 //a3 = 3; // 错误 } }
【Unity|C#】基础篇(6)——const、readonly、static readonly
标签:html log 函数 学习资料 根据 col 资料 对象 构造函数
原文地址:https://www.cnblogs.com/shahdza/p/12269169.html