Can anyone explain why the following doesn't compile?
byte b = 255 << 1
The error:
Constant value '510' cannot be converted to a 'byte'
I'm expecting the following in binary:
1111 1110
The type conversion has stumped me.
|
Can anyone explain why the following doesn't compile?
The error:
I'm expecting the following in binary:
The type conversion has stumped me.
| ||||
|
feedback
|
|
Numeric literals in C# are
to reduce the result to 8 bits again. Unlike Java, C# does not allow overflows to go by undetected. Basically you'd have two sensible options when trying to assign 510 to a byte: Either clamp at the maximum value, then you'd get 255, or throw away the bits that do not fit, in which case you'd get 254. You can also use
| |||||||||||
feedback
|
|
You are shifting 255 by 1 bit, then trying to assign it to a byte.
| |||
|
feedback
|
|
The result of the You need to cast the result of the shift, not the input. Additionally, it will produce an overflow (it is larger than a byte afterall), so you need to specify that you need an unchecked cast. In other words, this will work:
| |||
|
feedback
|
|
have you tried casting it?
This is an interesting approach - the above code will work if wrapped in a
Since it is | |||||||||||||
feedback
|
|
And since << has a higher precedence than & you can save the brackets:
| |||
|
feedback
|