VS2008项目使用VS2015打开时,出现错误: error CS1012: Too many characters in character literal -------------------------------------------------------------------------------------------- 把源码文件转换成UTF-8: Save ***** as.... -> 点击Save 按钮旁边的小黑三角- > Save with Encoding.…
global variables are implicitly constant, enable compatibility mode to allow modification http://xboxforums.create.msdn.com/forums/p/63613/389853.aspx 方法1 local var http://www.cnblogs.com/cappuccino/archive/2012/09/18/2690465.html 方法2 static 但是static…
define的用法小结 define的用法只是一种纯粹的替换功能,宏定义的替换是预处理器处理的替换. 一:简单的宏定义用法 格式:#define 标识符 替换内容 替换的内容可以是数字,字符,字符串,特殊字符和空格,后面是什么内容就会替换成什么内容. 例如: #define N 5 效果等同于 int array [5]; int array[N]; 同样效果: #define N = 5 int array[N]; 效果等同于 int array[= 5]; 同样效果: #de…