今天突发奇想,object C里面 @"hello" 就代表了 hello 的字符串。
然后C++里面 "hello" 即代表 hello 字符串。
能否写个define 类似于 @"__str__" = "__str__" 的功能。
类似 #define @"__str__" "__str__" 这样在写@“hello" 的时候就被宏替换成了"hello"了。
但这样编译是不会通过的,请问能写出这样的宏来么。
今天突发奇想,object C里面 @"hello" 就代表了 hello 的字符串。
然后C++里面 "hello" 即代表 hello 字符串。
能否写个define 类似于 @"__str__" = "__str__" 的功能。
类似 #define @"__str__" "__str__" 这样在写@“hello" 的时候就被宏替换成了"hello"了。
但这样编译是不会通过的,请问能写出这样的宏来么。
不可以的,因为字符'@'不满足宏的定义,即宏变量名不能够包含'@'标识符。
可以采用如下形式:
#define S(x) (x)
当使用S("abc") 指的字符串 abc