vote up 7 vote down star
4

I've always wondered why the C++ Standard library has instantiated basic_[io]stream and all its variants using the char type instead of the unsigned char type. char means (depending on whether it is signed or not) you can have overflow and underflow for operations like get(), which will lead to implementation-defined value of the variables involved. Another example is when you want to output a byte, unformatted, to an ostream using its put function.

Any ideas?


Note: I'm still not really convinced. So if you know the definitive answer, you can still post it indeed.

flag

60% accept rate
I can't give a why, but I do know that the signedness of characters in GCC depends on the underlying CPU and OS. So the convention changes from one CPU/OS to another. I just can't say why it changes. – Max Lybbert Apr 30 at 0:39
Great question! Hoping somebody give us a good reason. ACE guys use unsigned char as their ACE_Byte type ( aoc.nrao.edu/php/tjuerges/… ). – fnieto Aug 15 at 13:25

2 Answers

vote up 9 vote down check

Possibly I've misunderstood the question, but conversion from unsigned char to char isn't unspecified, it's implementation-dependent (4.7-3 in the C++ standard).

The type of a 1-byte character in C++ is "char", not "unsigned char". This gives implementations a bit more freedom to do the best thing on the platform (for example, the standards body may have believed that there exist CPUs where signed byte arithmetic is faster than unsigned byte arithmetic, although that's speculation on my part). Also for compatibility with C. The result of removing this kind of existential uncertainty from C++ is C# ;-)

Given that the "char" type exists, I think it makes sense for the usual streams to use it even though its signedness isn't defined. So maybe your question is answered by the answer to, "why didn't C++ just define char to be unsigned?"

link|flag
I thought implementation-dependent is the same as unspecified. I will correct my question and look up on the difference. thanks for telling me :) – Johannes Schaub - litb Nov 10 '08 at 11:44
Unspecified means the implementation can put any value it likes in there (including picking one randomly each time it happens), and not document what it does. Implementation-dependent means that the implementation must document what value it puts in there. – Steve Jessop Nov 10 '08 at 11:47
I heard that removing the C heritage from C++ yielded D :) – xtofl Nov 10 '08 at 11:47
ok thanks mate. anyway i meant if you were doing char c = foo.get(); doSomething(c); and don't care about EOF since you know you are not at the end. – Johannes Schaub - litb Nov 10 '08 at 11:52
That's then an issue with converting int_type to char. You can probably rely on the implementation to choose int_type such that this conversion is sensible, even if it technically could do something weird. – Steve Jessop Nov 10 '08 at 12:04
show 2 more comments
vote up 5 vote down

char is for characters, unsigned char for raw bytes of data, and signed chars for, well, signed data.

Standard does not specify if signed or unsigned char will be used for the implementation of char - it is compiler-specific. It only specifies that the "char" will be "enough" to hold characters on you system - the way characters were in those days, which is, no UNICODE.

Using "char" for characters is the standard way to go. Using unsigned char is a hack, although it'll match compiler's implementation of char on most platforms.

link|flag

Your Answer

Get an OpenID
or

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