本文介绍了目标c中的可变字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好朋友,
NSString str1 = @第一字符串";
NSstring str2 = @第二字符串";
str2 = [NSString stringWithString:str1]; //str2是不可变的,尽管
//此后更改了str2的内容
//声明为str1.
阅读以上代码后,请告诉我str2对象是否不可变,为什么
str2的内容更改了吗?
hello friends ,
NSString str1=@"1st string";
NSstring str2=@"2nd String";
str2=[NSString stringWithString:str1]; // str2 is immutable , although the
// content of str2 changed after this
// statement to str1 .
After reading the above code, please tell me if str2 object is immutable then why
the content of the str2 got changed ?
推荐答案
这篇关于目标c中的可变字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!