#include <iostream> #include <iomanip> #include <string> using namespace std; struct CarType { string maker; int year; float price; }; //使用这样的宏定义还有着可移植性的优势,所有的C编译器都支持它。 #define EXAMPLE1 struct CarType * //很多编译器不支持如下方法 typedef struct CarType * EXAMPLE2; int main() { //第一个声明被扩展成 struct CarType *a,b; EXAMPLE1 a,b; EXAMPLE2 c,d; cout<<sizeof(a)<<" "<<sizeof(b)<<endl; cout<<sizeof(c)<<" "<<sizeof(d)<<endl; return 0; }
总结:宏不是类型定义,虽然使用宏定义有可移植性的优势,所有的C编译器都支持,但是在声明多个变量时出现问题.
例如在上面的代码中
EXAMPLE1 a,b;被扩展成struct CarType *a,b;
EXAMPLE2 a,b被扩展成struct CartType *a,*b
综上:宏不是类型定义,只是简单的代换.
原文地址:http://blog.csdn.net/persever/article/details/45567375