1,typedef与define异同点 typedef int INT 将INT代表int #define INT int 两个都有起别名的作用 不同:typedef可用来为系统,define可以定义变量,常量等 define是预编译过程定义别名,typeof是程序编译过程中处理