iOS學習筆記之NSString

來源:互聯網
上載者:User

關於NSString的各種初始化與之的retainCount

int main(int argc, const char * argv[]){    @autoreleasepool {                NSString *s1 = @"Constant string";        NSLog(@"%lx", [s1 retainCount]); // ffffffffffffffff                NSString *s2 = [NSString stringWithString:@"string 2"];        NSLog(@"%lx", [s2 retainCount]); // ffffffffffffffff                NSString *s3 = [NSString stringWithFormat:@"%s", @"string 3"];        NSLog(@"%lx", [s3 retainCount]); // 1                NSMutableString *s4 = [NSMutableString stringWithString:@"string 4"];        NSLog(@"%lx", [s4 retainCount]); // 1                NSString *s5 = [NSString stringWithString:[NSString stringWithFormat:@"string 5"]];        NSLog(@"%lx", [s5 retainCount]); // 2                NSString *s6 = [[NSString alloc] init];        NSLog(@"%lx", [s6 retainCount]); // ffffffffffffffff        s6 = @"string 6";        NSLog(@"%lx", [s6 retainCount]); // ffffffffffffffff    }    return 0;}

 

記憶體中常量字串的空間分配與其它對象不同,它們沒有引用計數機制,因為永遠不能釋放這些對象,這就是為什麼向s1發送訊息retainCount,而它返回

ffffffffffffffff,實際上在標準標頭檔<limits.h>中,此值被定義為最大的不帶正負號的整數,或者UINT_MAX.

這也同樣適用於使用常量字串初始化不可變對象:這種對象也沒有保持值.

在下面這一句中:

NSMutableString *s4 = [NSMutableString stringWithString:@"string 4"];

變數s4被設定成常量字串@"string 4"的副本。製作字串副本的原因是向NSMutableString發送了stringWithString:訊息,表示該字串的內容可能在程式執行期間發生變化。由於常量字串的內容是不能改變的。所以系統不能將變數s4設為指向常量字串@"string 4",而s2是可以的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.