我们可以比较 NSString 和 NSMutableString

发布于 2024-10-05 03:58:47 字数 268 浏览 2 评论 0原文

例如...

NSString string1 = @"Hello world";
NSMutableString string2 = [NSMutableString stringWithString: string1];

那么...那么我们可以使用以下语句来比较它们吗...?或者还有其他办法吗?

if(string1 isEqualToString:string2)

请帮帮我...

for example...

NSString string1 = @"Hello world";
NSMutableString string2 = [NSMutableString stringWithString: string1];

then... then can we compare these using following statement..? or there is any other way?

if(string1 isEqualToString:string2)

help me out please...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心凉 2024-10-12 03:58:47

是的当然。 NSMutableString 是 NSString,因此您的代码完全正确,除了一些语法错误(您错过了每个 NSString 上的 *[ ]if 语句上您应该编写:

NSString *string1 = @"Hello world";
NSMutableString *string2 = [NSMutableString stringWithString:string1];

if ([string1 isEqualToString:string2])
{
    // string are equal
}

yes of course. an NSMutableString is an NSString, so your code is perfectly correct, except for some syntax errors (you missed the * on each NSString and the [ ] on the if statement. You should write :

NSString *string1 = @"Hello world";
NSMutableString *string2 = [NSMutableString stringWithString:string1];

if ([string1 isEqualToString:string2])
{
    // string are equal
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文