示例
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
typedef int Counter;
typedef NSNumber *NumberObject;
Counter j; //等价于int j;
NumberObject n; //等价于NSNumber *n;
typedef enum { east, west, south, norh } Direction;
Direction step1, step2;
}
return 0;
}