NSString *str1 = @“abc” str1保存在常量区。 NSString *str2 = [NSString alloc]initWithFormat:@"abc"]; str2保存在堆区,alloc方法生成的保存在堆区。