美文网首页
宏的##和#作用

宏的##和#作用

作者: 訷訷 | 来源:发表于2016-04-15 11:31 被阅读21次

    在宏里面, ##的作用:连接2个标识符

    #define method(name) - (void)load##name {}
    method(abc)  //- (void)loadabc {}
    method(ddd)  //- (void)loadddd {}
    method(ttt)  //- (void)loadttt {}
    

    在宏里面, #的作用:给右边的标识符加上双引号""

    #define test(name) @#name
    test(abc) // @"abc"
    

    相关文章

      网友评论

          本文标题:宏的##和#作用

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