1、Typedef
为一个已知数据类型自定义一个别名。
如 Typedef int* intpointer;
2、#define
做一个简单的替换工作,代码编写时不会对错误进行检查
注意:define是定义常量,typedef是定义变量