第五章 变量的更多内容
- char存储的是数值,所以char被当作一个数值类型。
- checked关键字:checked(expression),变量进行类型转换时,检查是否溢出。
- 用Convert则自动进行溢出检测,以后全用Convert了。
- Enum.Parse():
(enumerationType)Enum.Parse(typeof(enumerationType),enumerationValueString);
string myString = "north";
orientation myDirection=(orientation)Enum.Parse(typeof(orientation),myString); - foreach循环对数组内容进行只读访问,不能改变任何元素的值。
- 多维数组去死!
习题:https://files.cnblogs.com/David-Huang/C05.rar