摘要:
代码测试平台:Window 7 Server + MicrosoftVisual Studio 10 Visual C++某些说明问题的汇编代码: Debug模式下的汇编代码1.const变量声明const int n1; // 错误,声明的同时必须要伴随着初始化.const int n1 = 3; // 正确.extern const int n2; // 正确.const int* pn1; // 正确.int* const pn2; // 错误,声明的同时必须要伴随着初始化.int n2 = 5;int* const pn2 = &n2; // 正确.const int nArr 阅读全文