gpt4 book ai didi

swift - swift 中的不等式运算符(!= 等效)

转载 作者:搜寻专家 更新时间:2023-10-31 19:29:25 25 4
gpt4 key购买 nike

我们在 swift 中使用“==”检查字符串相等性。但是如何在 swift 中使用等效的 !=(在 objective-c 中)?我想检查 str1!=str2。但是编译器建议我删除'!'性格。

最佳答案

不等于 != 运算符在 Swift 中与在 Objective C 中相同,因为它是标准的 C 比较运算符

根据 Basic Operators 的 Swift 文档:

Swift supports all standard C comparison operators:

Equal to (a == b)

Not equal to (a != b)

您的示例不起作用的原因是您必须添加空格:

str1!=str2

应该是

str1 != str2

关于swift - swift 中的不等式运算符(!= 等效),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39290141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com