我有一些 Obj-C 代码,它使用 NSNumber s 作为字典中的键。我发现了一个错误,我追踪到一些非常奇怪的行为,如果使用 NSDecimalNumber (NSNumber 的子类)访问字典,它将始终返回相同的元素。这是一个展示行为和 NSLogs 输出问题的小程序:

#define LONGNUMBER1 5846235266280328403
#define LONGNUMBER2 5846235266280328404
- (void) wtfD00d {
    NSMutableDictionary *dict = [NSMutableDictionary dictionary];

    NSNumber *key1 = [NSNumber numberWithLongLong:LONGNUMBER1];
    NSNumber *key2 = [NSNumber numberWithLongLong:LONGNUMBER2];
    dict[key1] = @"ONE";
    dict[key2] = @"TWO";

    NSNumber *decimalKey1 = [NSDecimalNumber numberWithLongLong:LONGNUMBER1];
    NSNumber *decimalKey2 = [NSDecimalNumber numberWithLongLong:LONGNUMBER2];
    NSString *value1 = dict[decimalKey1];
    NSString *value2 = dict[decimalKey2];

    NSLog(@"Number of entries in dictionary = %lu", (unsigned long)dict.count); // 2
    NSLog(@"%@", dict);  //  5846235266280328403 = ONE
                         //  5846235266280328404 = TWO
    NSLog(@"Value1 = %@, Value 2 = %@", value1, value2);   // Value1 = ONE, Value 2 = ONE
    NSLog(@"key2 = decimalKey2: %@", [key2 isEqual:decimalKey2] ? @"True" : @"False");  // key2 isEqual decimalKey2: True
    NSLog(@"decimalKey1 = decimalKey2: %@", [decimalKey1 isEqual:decimalKey2] ? @"True" : @"False");  // decimalKey1 isEqual decimalKey2: False
}

请注意,第 3 行日志显示 value1 和 value2 相同。为什么会这样?

这是因为我们在 CoreData 中有一些类型为 Decimal 的字段,它们作为 NSNumber 来自 CoreData。我们发现我们必须玩游戏来解决这种奇怪的行为,我不明白为什么它首先发生。我希望任何人都可以提供有关查找失败原因的任何见解。

最佳答案

我认为当 NSNumberNSDecimalNumber 相互比较时,它们是在使用 doubleValue 进行比较。

你可以报告苹果中的错误

我只能建议避免 NSNumber<->NSDecimalNumber 比较并在此处使用:

NSString *value1 = dict[@(decimalKey1.longLongValue)];
NSString *value2 = dict[@(decimalKey2.longLongValue)];

关于objective-c - NSDictionary 为不同的键返回相同的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52186200/

10-13 06:17