发布时间:2013-01-18 22:22:43
一、为什么要使用内联函数 1、使用预处理宏的不足 宏函数经典案例 #include "stdafx.h" #include using namespace std; #define MUL(x,y) (x*y) int _tmain(int argc, _TCHAR* argv[]) { ??? cout ......【阅读全文】
发布时间:2012-03-22 20:03:58
用于查看用户态程序发出的系统调用和信号,是非常有用的调试和诊断工具。 通常情况下其运行直到程序结束。 常用选项: <D......【阅读全文】
发布时间:2012-03-22 20:02:32
GCC: 预处理(Pre-Process) --> .i 编译(Compiling)  ......【阅读全文】
发布时间:2012-03-22 20:02:17
exit(int n) 其实就是直接退出程序,因为默认的标准程序入口为 <span style="font-family:......【阅读全文】