```
NSMutableString* mt1 = [NSMutableStringstringWithString:@"tttt"];
NSMutableString* mt2 = @"hhhh";
NSLog(@"%p",mt1);
NSLog(@"%@", mt1.class);
NSLog(@"%@", mt2.class);
[mt1 appendString:@"fff"];
[mt2 appendString:@"fff"];
NSLog(@"%p",mt1);
NSLog(@"%p",mt2);
```
网友评论