मेरा डिज़ाइन वृत्ति मुझे बताती है कि, यदि स्कोर की पहचान अपने मूल्य से अलग है, तो आपको सादे NSNumbers के बजाय किसी प्रकार की स्कोर ऑब्जेक्ट को सॉर्ट करना चाहिए।
लेकिन एक तरफ: एक चुटकी में, आप एनएसएनएएलयू का उपयोग कर रहे हैं, इस तरह आप सादे NSValue का उपयोग कर सकते हैं। मूल्यों को प्राप्त करने के लिए यह थोड़ा और काम है, लेकिन NSValue के पास उदाहरण नहीं है कि एनएसएनंबर छोटे मूल्यों के लिए सहकारी व्यवहार करता है।
कुछ कोड है कि सभी तीन व्यवहार अभ्यास:
// NSValues are always distinct:
int foo = 5, bar = 5, outfoo, outbar;
NSValue *one = [NSValue value:&foo withObjCType:@encode(int)];
NSValue *two = [NSValue value:&bar withObjCType:@encode(int)];
[one getValue:&outfoo];
[two getValue:&outbar];
NSLog(@"one: %@ %x = %d ; two: %@ %x = %d",
[one class], one, outfoo,
[two class], two, outbar);
// by comparison with NSNumber behavior:
NSNumber *three = [NSNumber numberWithInt:6];
NSNumber *four = [NSNumber numberWithInt:6];
NSLog(@"three: %@ %x = %d ; four: %@ %x = %d",
[three class], three, [three intValue],
[four class], four, [four intValue]);
// except when the numbers are big:
NSNumber *five = [NSNumber numberWithInt:8675309];
NSNumber *six = [NSNumber numberWithInt:8675309];
NSLog(@"five: %@ %x = %d ; six: %@ %x = %d",
[five class], five, [five intValue],
[six class], six, [six intValue]);
अपने Mac पर इस तरह उत्पादन पैदावार:
one: NSConcreteValue 42a8d0 = 5 ; two: NSConcreteValue 42a920 = 5
three: NSCFNumber 404380 = 6 ; four: NSCFNumber 404380 = 6
five: NSCFNumber 1324d0 = 8675309 ; six: NSCFNumber 106e00 = 8675309
आपको क्यों ध्यान अगर वे एक ही वस्तु बनाम साथ दो अलग-अलग वस्तुओं रहे हैं एक ही मूल्य? –
क्योंकि वे एक ही मूल्य साझा करते हैं, फिर भी मुझे स्कोर की गणना करने के लिए अलग-अलग उदाहरण होने की आवश्यकता होती है। – jchatard