NSDictionary为不同的键返回相同的值

时间:2018-09-05 13:21:14

标签: objective-c nsdictionary nsnumber

我有一些Obj-C代码,它使用NSNumber作为字典中的键。我发现了一个错误,可以追溯到一些非常奇怪的行为,即如果使用NSDecimalNumberNSNumber的子类)访问字典,它将始终返回相同的元素。这是一个展示行为的小程序,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
}

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

之所以出现此问题,是因为我们在CoreData中有一些字段的类型为Decimal,并且它们以NSNumber的形式从CoreData中出来。我们发现我们不得不玩游戏来解决这种奇怪的行为,但我不明白为什么它会排在第一位。我希望任何人都可以提供有关失败查找原因的任何见解。

1 个答案:

答案 0 :(得分:2)

我认为将NSNumberNSDecimalNumber进行比较时,他们使用doubleValue进行比较。

您可以为此举报苹果中的错误

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

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