第五章 变量的更多内容

  1. char存储的是数值,所以char被当作一个数值类型。
  2. checked关键字:checked(expression),变量进行类型转换时,检查是否溢出。
  3. 用Convert则自动进行溢出检测,以后全用Convert了。
  4. Enum.Parse():
       (enumerationType)Enum.Parse(typeof(enumerationType),enumerationValueString);
    
      string myString = "north";
      orientation myDirection
    =(orientation)Enum.Parse(typeof(orientation),myString);

     

  5. foreach循环对数组内容进行只读访问,不能改变任何元素的值。
  6. 多维数组去死!

习题:https://files.cnblogs.com/David-Huang/C05.rar

       

 

 

posted @ 2012-07-20 10:30  David Huang  阅读(119)  评论(0编辑  收藏  举报