NSString *a = @"hEloow";//oc的字符串 char *s = "haha";//c的字符串 NSLog(@"%@ %s", a, s); NSString *str = [NSString stringWithFormat:@"%@ %s", a, s]; NSLog(@"%@", str);