iOS NSString 内存管理

iOS中,NSString对象相对其他OC对象的内存管理是复杂的。
按照产生对象的isa,大致可以分为三种情况,如下:

1、__NSCFConstantString

字符串常量,是一种编译时常量,retainCount值很大,对其操作,不会引起引用计数变化。
这种对象存储在字符串常量区。

2、__NSCFString

__NSCFString对象是在运行时创建的一种NSString子类,创建后引用计数会加1。
这种对象存储在堆上。

3、NSTaggedPointerString

标签指针,是苹果在64位环境下对NSString、NSNumber等对象做的一些优化。

简单来讲,可以理解为把指针指向的内容直接放在了指针变量的内存地址中,因为在 64 位环境下指针变量的大小达到了 8 位足以容纳一些长度较小的内容。于是使用了标签指针这种方式来优化数据的存储方式。在运行时根据实际情况创建。

对于 NSString 对象,当字符串是由数字、英文字母组合且长度小于等于 9 的时候会自动成为 NSTaggedPointerString 类型。如果有中文或其他特殊符号,则会直接成为 __NSCFString 类型。

代码验证

环境:Xcode 10.2 、iOS 12.2

一、数字和字母组合(长度小于9)
/**
 测试拷贝
 */
- (void)testCopyAndMutableCopy {
    [self testString];
    [self testStringCopy1];
    [self testStringCopy2];
    [self testStringCopy3];
    [self testMutableStringCopy1];
    [self testMutableStringCopy2];
}

/**
 测试不可变字符串
 */
- (void)testString {
    NSString *testStr00 = @"abc123";
    NSLog(@"testStr00:%p ** %@ ** %@", testStr00, [testStr00 class], testStr00);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy1 {
    NSString *testStr11 = @"abc123";
    NSLog(@"testStr11:%p ** %@ ** %@", testStr11, [testStr11 class], testStr11);
    
    id testStr21 = [testStr11 copy];
    NSLog(@"testStr21:%p ** %@ ** %@", testStr21, [testStr21 class], testStr21);
    
    id testStr31 = [testStr11 mutableCopy];
    NSLog(@"testStr31:%p ** %@ ** %@", testStr31, [testStr31 class], testStr31);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy2 {
    NSString *testStr12 = [NSString stringWithFormat:@"abc123"];
    NSLog(@"testStr12:%p ** %@ ** %@", testStr12, [testStr12 class], testStr12);
    
    id testStr22 = [testStr12 copy];
    NSLog(@"testStr22:%p ** %@ ** %@", testStr22, [testStr22 class], testStr22);
    
    id testStr32 = [testStr12 mutableCopy];
    NSLog(@"testStr32:%p ** %@ ** %@", testStr32, [testStr32 class], testStr32);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy3 {
    NSString *testStr13 = [[NSString alloc] initWithFormat:@"abc123"];
    NSLog(@"testStr13:%p ** %@ ** %@", testStr13, [testStr13 class], testStr13);
    
    id testStr23 = [testStr13 copy];
    NSLog(@"testStr23:%p ** %@ ** %@", testStr23, [testStr23 class], testStr23);
    
    id testStr33 = [testStr13 mutableCopy];
    NSLog(@"testStr33:%p ** %@ ** %@", testStr33, [testStr33 class], testStr33);
    
    printf("\n");
}

/**
 测试可变字符串
 */
- (void)testMutableStringCopy1 {
    NSMutableString *testMuStr14 = [[NSMutableString alloc] initWithString:@"abc123"];
    NSLog(@"testMuStr14:%p ** %@ ** %@",testMuStr14, [testMuStr14 class], testMuStr14);
    
    id testMuStr24 = [testMuStr14 copy];
    NSLog(@"testMuStr24:%p ** %@ ** %@",testMuStr24, [testMuStr24 class], testMuStr24);
    
    id testMuStr34 = [testMuStr14 mutableCopy];
    NSLog(@"testMuStr34:%p ** %@ ** %@",testMuStr34, [testMuStr34 class], testMuStr34);
    
    printf("\n");
}

/**
 测试可变字符串
 */
- (void)testMutableStringCopy2 {
    NSMutableString *testMuStr15 = [[NSMutableString alloc] initWithFormat:@"abc123"];
    NSLog(@"testMuStr15:%p ** %@ ** %@",testMuStr15, [testMuStr15 class], testMuStr15);
    
    id testMuStr25 = [testMuStr15 copy];
    NSLog(@"testMuStr25:%p ** %@ ** %@",testMuStr25, [testMuStr25 class], testMuStr25);
    
    id testMuStr35 = [testMuStr15 mutableCopy];
    NSLog(@"testMuStr35:%p ** %@ ** %@",testMuStr35, [testMuStr35 class], testMuStr35);
    
    printf("\n");
}

测试结果:

testStr00:0x1063cc0a0 ** __NSCFConstantString ** abc123

testStr11:0x1063cc0a0 ** __NSCFConstantString ** abc123
testStr21:0x1063cc0a0 ** __NSCFConstantString ** abc123
testStr31:0x600001bc65b0 ** __NSCFString ** abc123

testStr12:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testStr22:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testStr32:0x600001b8b540 ** __NSCFString ** abc123

testStr13:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testStr23:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testStr33:0x600001bc65b0 ** __NSCFString ** abc123

testMuStr14:0x600001b8b540 ** __NSCFString ** abc123
testMuStr24:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testMuStr34:0x600001bc65b0 ** __NSCFString ** abc123

testMuStr15:0x600001b913e0 ** __NSCFString ** abc123
testMuStr25:0x91472c787c5ba8b1 ** NSTaggedPointerString ** abc123
testMuStr35:0x600001b90ed0 ** __NSCFString ** abc123

从上面测试结果来看,有以下结论:

1、testStr00testStr11testStr21具有相同的内存地址(0x1063cc0a0)。对__NSCFConstantString对象进行copy操作,不引起引用计数变化;进行mutableCopy操作,会拷贝对象,生成新的__NSCFString对象(内存地址会发生变化)。

2、testStr12testStr22testStr13testStr12具有相同的内存地址(0x91472c787c5ba8b1)。对NSTaggedPointerString对象进行copy操作,不引起引用计数变化;进行mutableCopy操作,会拷贝对象,生成新的__NSCFString对象(内存地址会发生变化)。

3、比较有意思的是testStr31testStr33具有相同的内存地址(0x600001bc65b0),但是与testStr32是不一样的(0x600001b8b540)。推测多次对同一字符串常量进行mutableCopy操作,生成新的__NSCFString对象,有可能同一对象、也有可能不是同一对象。

4、对__NSCFString对象进行copy操作,可能会生成NSTaggedPointerString对象;也可能会生成__NSCFString对象。(参照下面带中文的字符串测试结果)
进行mutableCopy操作,会拷贝对象,生成新的__NSCFString对象(内存地址会发生变化)。

二、带中文组合
/**
 测试拷贝
 */
- (void)testCopyAndMutableCopy {
    [self testString];
    [self testStringCopy1];
    [self testStringCopy2];
    [self testStringCopy3];
    [self testMutableStringCopy1];
    [self testMutableStringCopy2];
}

/**
 测试不可变字符串
 */
- (void)testString {
    NSString *testStr00 = @"你好abc";
    NSLog(@"testStr00:%p ** %@ ** %@", testStr00, [testStr00 class], testStr00);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy1 {
    NSString *testStr11 = @"你好abc";
    NSLog(@"testStr11:%p ** %@ ** %@", testStr11, [testStr11 class], testStr11);
    
    id testStr21 = [testStr11 copy];
    NSLog(@"testStr21:%p ** %@ ** %@", testStr21, [testStr21 class], testStr21);
    
    id testStr31 = [testStr11 mutableCopy];
    NSLog(@"testStr31:%p ** %@ ** %@", testStr31, [testStr31 class], testStr31);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy2 {
    NSString *testStr12 = [NSString stringWithFormat:@"你好abc"];
    NSLog(@"testStr12:%p ** %@ ** %@", testStr12, [testStr12 class], testStr12);
    
    id testStr22 = [testStr12 copy];
    NSLog(@"testStr22:%p ** %@ ** %@", testStr22, [testStr22 class], testStr22);
    
    id testStr32 = [testStr12 mutableCopy];
    NSLog(@"testStr32:%p ** %@ ** %@", testStr32, [testStr32 class], testStr32);
    
    printf("\n");
}

/**
 测试不可变字符串
 */
- (void)testStringCopy3 {
    NSString *testStr13 = [[NSString alloc] initWithFormat:@"你好abc"];
    NSLog(@"testStr13:%p ** %@ ** %@", testStr13, [testStr13 class], testStr13);
    
    id testStr23 = [testStr13 copy];
    NSLog(@"testStr23:%p ** %@ ** %@", testStr23, [testStr23 class], testStr23);
    
    id testStr33 = [testStr13 mutableCopy];
    NSLog(@"testStr33:%p ** %@ ** %@", testStr33, [testStr33 class], testStr33);
    
    printf("\n");
}

/**
 测试可变字符串
 */
- (void)testMutableStringCopy1 {
    NSMutableString *testMuStr14 = [[NSMutableString alloc] initWithString:@"你好abc"];
    NSLog(@"testMuStr14:%p ** %@ ** %@",testMuStr14, [testMuStr14 class], testMuStr14);
    
    id testMuStr24 = [testMuStr14 copy];
    NSLog(@"testMuStr24:%p ** %@ ** %@",testMuStr24, [testMuStr24 class], testMuStr24);
    
    id testMuStr34 = [testMuStr14 mutableCopy];
    NSLog(@"testMuStr34:%p ** %@ ** %@",testMuStr34, [testMuStr34 class], testMuStr34);
    
    printf("\n");
}

/**
 测试可变字符串
 */
- (void)testMutableStringCopy2 {
    NSMutableString *testMuStr15 = [[NSMutableString alloc] initWithFormat:@"你好abc"];
    NSLog(@"testMuStr15:%p ** %@ ** %@",testMuStr15, [testMuStr15 class], testMuStr15);
    
    id testMuStr25 = [testMuStr15 copy];
    NSLog(@"testMuStr25:%p ** %@ ** %@",testMuStr25, [testMuStr25 class], testMuStr25);
    
    id testMuStr35 = [testMuStr15 mutableCopy];
    NSLog(@"testMuStr35:%p ** %@ ** %@",testMuStr35, [testMuStr35 class], testMuStr35);
    
    printf("\n");
}

测试结果:

testStr00:0x108a610a0 ** __NSCFConstantString ** 你好abc

testStr11:0x108a610a0 ** __NSCFConstantString ** 你好abc
testStr21:0x108a610a0 ** __NSCFConstantString ** 你好abc
testStr31:0x6000007f6e50 ** __NSCFString ** 你好abc

testStr12:0x6000007f6d60 ** __NSCFString ** 你好abc
testStr22:0x6000007f6d60 ** __NSCFString ** 你好abc
testStr32:0x600000790bd0 ** __NSCFString ** 你好abc

testStr13:0x6000007f6d30 ** __NSCFString ** 你好abc
testStr23:0x6000007f6d30 ** __NSCFString ** 你好abc
testStr33:0x600000790bd0 ** __NSCFString ** 你好abc

testMuStr14:0x6000007c9350 ** __NSCFString ** 你好abc
testMuStr24:0x6000007f6d30 ** __NSCFString ** 你好abc
testMuStr34:0x600000790bd0 ** __NSCFString ** 你好abc

testMuStr15:0x6000007c9350 ** __NSCFString ** 你好abc
testMuStr25:0x6000007c9650 ** __NSCFString ** 你好abc
testMuStr35:0x600000790bd0 ** __NSCFString ** 你好abc
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容