NSMutableString * s =&...
发布于 2022-03-03 14:15:02
NSMutableString * s = [[NSMutableString alloc] initWithFormat:@"hello"]
NSLog(@"s = %p",s)
[str appendFormat:@"world"]
NSLog(@"s = %p",s)
上述代码两次打印地址的值是否相同( )
NSLog(@"s = %p",s)
[str appendFormat:@"world"]
NSLog(@"s = %p",s)
上述代码两次打印地址的值是否相同( )
登录后免费查看答案
关注者
0
被浏览
35