- Introduce a synonym for fundamental types.
typedef int Integer;
- Introduce a synonym for pointer types.
typedef char *pChar;
- Introduce a synonym for reference types.
typedef double &refDouble;
- Introduce a synonym for struct, union, enum in C.
typedef struct {int key; NODE *next;} NODE;
- Introduce a synonym for struct or class in C++.
typedef class Old New;
typedef Old New; - Introduce a synonym for array types.
typedef double dArray[10];
- Introduce a synonym for function types.
typedef void Func(int, double);
- Introduce a synonym for function pointer types.
typedef (void *)FuncPtr(int, double);
Monday, October 31, 2011
The Keyword typedef
Some usages for the keyword typedef.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment