typedef语句

作者:追风剑情 发布于:2019-2-25 13:40 分类:Objective-C

示例

  1. #import <Foundation/Foundation.h>
  2.  
  3. int main(int argc, const char * argv[]) {
  4. @autoreleasepool {
  5. typedef int Counter;
  6. typedef NSNumber *NumberObject;
  7. Counter j; //等价于int j;
  8. NumberObject n; //等价于NSNumber *n;
  9. typedef enum { east, west, south, norh } Direction;
  10. Direction step1, step2;
  11. }
  12. return 0;
  13. }

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号