C和C++中的typedef的作用是定义一个类型的别名。其用法如下:
(1)typedef int Elemtype;基本用法 作用是定义int的别名Elemtype。
(2)typedef int arr[100]; 定义一个数组的别名arr,arr的类型是长度为100的整型数组,此后用arr定义的都是长度为100的int数组。
(3)typedef struct node{ }Node; 定义一个结构体的别名,此后可以用Node代替struct node定义结构体变量。
(4)typedef int (*pf)(int); 定义一个指针类型的别名pf,此后pf定义的都是指向函数的指针,且只能指向有一个int型参数的类型为int型函数。
int fun(int x)
{
return x;
}
pf p;
p=fun;
(5)typedef int* (*pf)(int); 定义一个指针类型的别名pf,此后pf定义的都是指向函数的指针,且只能指向有一个int型参数的类型为int *的函数。
int* fun(int x)
{
return &x;
}
pf p;
p=fun
(1)typedef int Elemtype;基本用法 作用是定义int的别名Elemtype。
(2)typedef int arr[100]; 定义一个数组的别名arr,arr的类型是长度为100的整型数组,此后用arr定义的都是长度为100的int数组。
(3)typedef struct node{ }Node; 定义一个结构体的别名,此后可以用Node代替struct node定义结构体变量。
(4)typedef int (*pf)(int); 定义一个指针类型的别名pf,此后pf定义的都是指向函数的指针,且只能指向有一个int型参数的类型为int型函数。
int fun(int x)
{
return x;
}
pf p;
p=fun;
(5)typedef int* (*pf)(int); 定义一个指针类型的别名pf,此后pf定义的都是指向函数的指针,且只能指向有一个int型参数的类型为int *的函数。
int* fun(int x)
{
return &x;
}
pf p;
p=fun