放置在哪里||
我知道这是一个非常简单的问题,但是我应该将 || 放在哪里如果我想同时检查 CAF 和 AAC,可以在下面查看吗?谢谢!
if ([[file pathExtension] isEqualToString:@"caf"])
I know that this is a really simple question, but where should I place the || below if I want to check for both CAF and AAC? Thanks!
if ([[file pathExtension] isEqualToString:@"caf"])
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
注意 - 这是文字比较,因此它不区分大小写 - 如果您想进行不区分大小写的比较:
Note - this is a literal comparison so it is not case insensitive - if you want to do a case insensitive comparison:
您必须测试两次:
或者,通过这样做来避免重复:
You have to test it twice:
Or, avoid some repetition by doing it like:
||
在 Objective c 中表示“或”。所以这个if (a == 1 || a == 2)
意味着如果 a 等于 1 OR a 等于 2。所以:== equal
&&和
||或者
||
means 'or' in Objective c. So thisif (a == 1 || a == 2)
means if a is equal to 1 OR a is equal to 2. So:== equal
&& and
|| or