Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have three fixed width integer types:

typedef int16_t TABCellManagedDataKey;
typedef int16_t TABCellManagedDataIndex;
typedef int32_t TABCellManagedDataKeyWithIndex;

And this is the code where they're being used:

TABCellManagedDataKeyWithIndex keyWithIndex = key << 16 | index;
[[self managedModel] setObject:model forKey:@(keyWithIndex)];

With the new @() syntax for NSNumber literals, is it safe to do the following instead?

[[self managedModel] setObject:model forKey:@(key << 16 | index)
share|improve this question

1 Answer

up vote 1 down vote accepted

Yes. That is fine. @(N) is the same as [NSNumber numberWithX:N].

share|improve this answer
I use @() in both cases. The difference is that in the first case I define the variable as TABCellManagedDataKeyWithIndex which is exactly 32 bits long. – Rudolf Adamkovic Jun 27 '12 at 14:50
@() infers the type from the argument. – Hampus Nilsson Jun 27 '12 at 14:57
I see. And is the argument 32 bit? It's not explicitly declared; it's just @(key << 16 | index) where both key and index are 16 bit. – Rudolf Adamkovic Jun 27 '12 at 15:09
Yes, but 16 is int, so they will be cast to int to match up. – Hampus Nilsson Jun 27 '12 at 15:54
OK, thanks for explanation! Accepted. – Rudolf Adamkovic Jul 12 '12 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.