How to compare objects using operator lt; or gt; in Objective-C?(如何使用运算符 lt; 比较对象或gt;在Objective-C中?)
问题描述
如何在 Objective-C 中比较自定义类的两个对象?我尝试重载
How do I compare two objects of a custom class in Objective-C? I try to overloading the
- (NSComparisonResult)compare:(id)other;
方法.如果我手动调用该方法,这将非常有用
method. This works great if I call the method manually
if ([obj1 compare:obj2] == NSOrderedDescending) {
// do something
}
有什么办法可以做到这样吗?
Is there any way that I can do it like this?
if (obj1 > obj2) {
// do something
}
或者我需要重载其他方法吗?
Or is there another method that I need to overload?
推荐答案
这是不可能的,因为 Objective C 没有运算符重载.您正在比较指针值.
This is not possible, since objective C doesn't have operator overloading. You are comparing pointer values.
这篇关于如何使用运算符 < 比较对象或>在Objective-C中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用运算符 < 比较对象或>在Objective-C中?
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01