时间:2021-09-24 10:57:23 | 栏目:iOS代码 | 点击:次
在 java 和 c# 中,字符串的拼接是直接用 + 来操作的。在 OC 中,说是有下面3种方法,
NSString* string; // 结果字符串
NSString* string1, string2; //已存在的字符串,需要将string1和string2连接起来
方法1:
在宏里拼接字符串:
#define API_SYSTEM @"http://"API_DOMAIN@"/system/"
#define API_USER @"http://"API_DOMAIN@"/user/"
API_SYSTEM 宏展开后是:
@"http://"@"www.jb51.net"@"/system/"
编译器会自动将字符中连接起来,目的实现。
c语言下的实现:
#define API_SYSTEM "http://"API_DOMAIN"/system/"
#define API_USER "http://"API_DOMAIN"/user/"