我想知道是否可以在Windows环境中的 typeof 等代码块中使用gcc扩展名。
以下代码仅用于展示我希望如何使用 typeof 的示例。
#include <stdio.h>
#include <stdlib.h>
#define SWAP(x, y) do { typeof(x) temp##x##y = x; x = y; y = temp##x##y; } while (0)
typedef struct Away{
int var1;
char cc;
int array[10];
} somedatatype;
void print_data(somedatatype data){
printf("var1 = %d\ncc = %c\narray[10] = {",data.var1,data.cc);
for(int i=0;i<10;i++){
i!=9 ? printf("%d,",data.array[i]):printf("%d}",data.array[i]);
}
}
int main(){
somedatatype data1, data2;
int a=51,b=42;
//initialize data1
data1.var1=2;
data1.cc='k';
for(int i=0;i<10;data1.array[i]=5,i++);
//initialize data2
data2.var1=3;
data2.cc='y';
for(int i=0;i<10;data2.array[i]=4,i++);
//swap
SWAP( data1, data2);
SWAP( a, b);
//print everything
printf("data1:\n");
print_data( data1);
printf("\ndata2:\n");
print_data( data2);
printf("\na = %d\nb = %d\n");
}
PS:我在阅读时找不到方法
http://gcc.gnu.org/onlinedocs/gcc/Typeof.html#Typeof
答案 0 :(得分:1)
字面意思 - 是的,这是可能的。
这个gcc扩展在GNU C中可用。用-std=gnu99
指定它(因为你也使用int for声明,C89不是这里的选项)。