I've seen this pattern used a lot in C & C++.
unsigned int flags = -1; // all bits are true
Is this a good portable way to accomplish this? Or is using 0xffffffff or ~0 better?
|
I've seen this pattern used a lot in C & C++.
Is this a good portable way to accomplish this? Or is using
| ||||
feedback
|
|
I recommend you to do it exactly as you have shown, since it is the most straight forward one. Initialize to For an example of a possibly surprise, consider this one:
It won't necessarily store a pattern with all bits 1 into And consider this one, which will fail on a non-two's complement representation:
The reason for that is that The thing you should understand is that it's all about values - not bits. The variable is initialized with a value. If in the initializer you modify the bits of the variable used for initialization, the value will be generated according to those bits. The value you need, to initialize We are not talking about whether But what we are talking about is what the result of the initialized | |||||||||||||||||||||
feedback
|
If you want to set all bits in a way guaranteed by the C standard, use the first one. | |||||||||||||||||||||
feedback
|
|
Frankly I think all fff's is more readable. As to the comment that its an antipattern, if you really care that all the bits are set/cleared, I would argue that you are probably in a situation where you care about the size of the variable anyway, which would call for something like boost::uint16_t, etc. | |||||||||||
feedback
|
|
A way which avoids the problems mentioned is to simply do:
Portable and to the point. | |||
|
feedback
|
|
I'm not sure using an unsigned int for flags is a good idea in the first place in C++. What about bitset and the like? std::numeric_limit<unsigned int>::max() is better because 0xffffffff assumes that unsigned int is a 32-bit integer. | |||||||||
feedback
|
|
Converting -1 into any unsigned type is guaranteed by the standard to result in all-ones. Use of Of course it's always okay to write out Personally I always use -1. It always works and you don't have to think about it. | |||||||||||||
feedback
|
|
I would not do the -1 thing. It's rather non-intuitieve (to me at least). Assigning signed data to an unsigned variable just seems to be a volation of the natural order of things. In your situation, I always use 0xFFFF. (Use the right number of Fs for the variable size of course.) [BTW, I very rarely see the -1 trick done in real-world code.] Additionally, if you really care about the individual bits in a vairable, it would be good idea to start using the fixed-width uint8_t, uint16_t, uint32_t types. | |||
|
feedback
|
|
Practically: Yes Theoretically: No. -1 = 0xFFFFFFFF (or whatever size an int is on your platform) is only true with two's complement arithmetic. In practice, it will work, but there are legacy machines out there (IBM mainframes, etc.) where you've got an actual sign bit rather than a two's complement representation. Your proposed ~0 solution should work everywhere. | |||||||||
feedback
|
|
On Intel's IA-32 processors it is OK to write 0xFFFFFFFF to a 64-bit register and get the expected results. This is because IA32e (the 64-bit extension to IA32) only supports 32-bit immediates. In 64-bit instructions 32-bit immediates are sign-extended to 64-bits. The following is illegal:
The following puts 64 1s in RAX:
Just for completeness, the following puts 32 1s in the lower part of RAX (aka EAX):
And in fact I've had programs fail when I wanted to write 0xffffffff to a 64-bit variable and I got a 0xffffffffffffffff instead. In C this would be:
the result is:
I thought to post this as a comment to all the answers that said that 0xFFFFFFFF assumes 32 bits, but so many people answered it I figured I'd add it as a separate answer. | |||
|
feedback
|
|
See litb's answer for a very clear explanation of the issues. My disagreement is that, very strictly speaking, there are no guarantees for either case. I don't know of any architecture that does not represent an unsigned value of 'one less than two to the power of the number of bits' as all bits set, but here is what the Standard actually says (3.9.1/7 plus note 44):
That leaves the possibility for one of the bits to be anything at all. | |||||||||||
feedback
|
|
As long as you have
If you want a long's worth of bits, you could use
These values are guaranteed to have all the value bits of the result set to 1, regardless of how signed integers are implemented. | |||||
feedback
|
|
It is certainly safe, as -1 will always have all available bits set, but I like ~0 better. -1 just doesn't make much sense for an | |||||
feedback
|
|
I say:
This will always give you the desired result. | |||
|
feedback
|
|
Although the 0xFFFF... may be easier to read, it can break portability in code which would otherwise be portable. Consider, for example, a library routine to count how many items in a data structure have certain bits set (the exact bits being specified by the caller). The routine may be totally agnostic as to what the bits represent, but still need to have an "all bits set" constant. In such a case, -1 will be vastly better than 0xFFFF... since it will work with any bit size. The other possibility, if a typedef value is used for the bitmask, would be to use ~(bitMaskType)0; if bitmask happens to only be a 16-bit type, that expression will only have 16 bits set (even if 'int' would otherwise be 32 bits) but since 16 bits will be all that are required, things should be fine provided that one actually uses the appropriate type in the typecast. | |||
|
feedback
|
Portable: Yes. Good: Debatable, given all the confusion shown on this thread. Being clear enough that your fellow programmers can understand the code without confusion should be one of the dimensions we measure for good code. Also, this method is prone to compiler warnings (unless you've crippled your compiler). To elide the warning without crippling your compiler, you'd need an explicit cast. For example,
The explicit cast requires that you pay attention to the target type. If you're paying attention to the target type, then you could avoid the portability problems of the other solutions. My advice would be to pay attention to the target type and make sure there are no implicit conversions. For example:
All of which are correct and will, in general, be easier for your fellow programmers to understand. | |||
|
feedback
|
|
yes the representation shown is very much correct as if we do it the other way round u will require an operator to reverse all the bits but in this case the logic is quite straightforward if we consider the size of the integers in the machine for instance in most machines an integer is 2 bytes = 16 bits maximum value it can hold is 2^16-1=65535 2^16=65536 0%65536=0 -1%65536=65535 which corressponds to 1111.............1 and all the bits are set to 1 (if we consider residue classes mod 65536) hence it is much straight forward. I guess no if u consider this notion it is perfectly dine for unsigned ints and it actually works out just check the following program fragment int main() {
} answer for b = 4294967295 whcih is -1%2^32 on 4 byte integers hence it is perfectly valid for unsigned integers in case of any discrepancies plzz report | |||||
feedback
|