美文网首页
typedef定义类型别名

typedef定义类型别名

作者: 莫_名 | 来源:发表于2016-09-20 20:37 被阅读0次

    typedef 已有类型 新名称;
    eg:
    type int Counter;
    typedef struct point FKPoint;
    typedef enum season FKSeason;
    typedef int (func) (int);
    typedef void (^FKPrintBlock) (NSString
    );

    相关文章

      网友评论

          本文标题:typedef定义类型别名

          本文链接:https://www.haomeiwen.com/subject/fvvoettx.html