Should a buffer of bytes be signed char or unsigned char or simply a char buffer? Any differences between C and C++?
Thanks.
|
1
|
|
|
|
|
|
Do you really care? If you don't, just use the default (char) and don't clutter your code with unimportant matter. Otherwise, future maintainers will be left wondering why did you use signed (or unsigned). Make their life simpler. |
||||||||||
|
|
|
If you fetch an element into a wider variable, it will of course be sign-extended or not. |
||
|
|
|
|
Should and should ... I tend to prefer unsigned, since it feels more "raw", less inviting to say "hey, that's just a bunch of small I don't think I've ever used an explicit Of course, one third option is to represent the buffer as |
||
|
|
|
|
It is better to define it as unsigned char. Infact Win32 type BYTE is defined as unsigned char. There is no difference between C & C++ between this. |
||
|
|
|
|
Several years ago I had a problem with a C++ console application that printed colored chars for ASCII values above 128 and this was solved by switching from char to unsigned char, but I think it had been solveable while keeping char type, too. For now, most C/C++ functions use char and I understand both languages much better now, so I use char in most cases. |
||
|
|
|
|
It depends. If the buffer is intended to hold text, then it probably makes sense to declare it as an array of If the buffer is intended to hold binary data, then it depends on how you intend to use it. For example, if the binary data is really a packed array of data samples that are signed 8-bit fixed point ADC measurements, then In most real-world cases, the buffer is just that, a buffer, and you don't really care about the types of the individual bytes because you filled the buffer in a bulk operation, and you are about to pass it off to a parser to interpret the complex data structure and do something useful. In that case, declare it in the simplest way. |
||
|
|
|
|
If it actually is a buffer of 8 bit bytes, rather than a string in the machine's default locale, then I'd use |
||||
|
|
|
For maximum portability always use unsigned char. There are a couple of instances where this could come into play. Serialized data shared across systems with different endian type immediately comes to mind. When performing shift or bit masking the values is another. |
||
|
|
|
|
You should use either char or unsigned char but never signed char. The standard has the following in 3.9/2
|
||
|
|
|
|
If you intend to store arbitrary binary data, you should use
From the last sentence it follows that there is no space left for any padding bits. If you use Even if any problems regarding the above would probably not show in real implementations (would be a very poor quality of implementation), you are best to use the right type from the beginning onwards, which is For strings, however, the data type of choice is For further information, read |
|||
|
|
|
|
The choice of int8_t vs uint8_t is similar to when you are comparing a ptr to be NULL. From a functionality point of view, comparing to NULL is the same as comparing to 0 because NULL is a #define for 0. But personally, from a coding style point of view, I choose to compare my pointers to NULL because the NULL #define connotes to the person maintaining the code that you are checking for a bad pointer... VS when someone sees a comparison to 0 it connotes that you are checking for a specific value. For the above reason, I would use uint8_t. |
||
|
|
|
|
If you lie to the compiler, it will punish you. If the buffer contains data that is just passing through, and you will not manipulate them in any way, it doesn't matter. However, if you have to operate on the buffer contents then the correct type declaration will make your code simpler. No "int val = buf[i] & 0xff;" nonsense. So, think about what the data actually is and how you need to use it. |
||
|
|
|
|
Now you can make your array be of I know it's somewhat silly, but it makes your code read 100% as you intended. |
||
|
|