无标题文章

```

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);

```

你可能感兴趣的:(无标题文章)