Why is wchar_t needed? How is it superior to short (or __int16 or whatever)?
(If it matters: I live in Windows world. I don't know what Linux does to support Unicode.)
|
|
|
|
|
|
|
In the C++ world,
would output
was invoked. In newer VC versions
is called, and that outputs |
||
|
|
|
See Wikipedia. Basically, it's a portable type for "text" in the current locale (with umlauts). It predates Unicode and doesn't solve many problems, so today, it mostly exists for backward compatibility. Don't use it unless you have to. |
||||||||||||
|
|
|
It is usually considered a good thing to give things such as data types meaningful names. What is best, char or int8? I think this:
is much easier to understand than this:
It's the same thing with wchar_t and int16. |
||
|
|
It is "superior" in a sense that it allows you to separate contexts: you use As a side node (since this was a C question), in C++ |
|||
|
|
|
This can pose problems for porting projects esp if you interchange Therefore having |
||
|
|
As I read the relevant standards, it seems like Microsoft fcked this one up badly. My manpage for the POSIX
So, 16 bits wchar_t is not enough if your platform supports Unicode. Each wchar_t is supposed to be a distinct value for a character. Therefore, wchar_t goes from being a useful way to work at the character level of texts (after a decoding from the locale multibyte, of course), to being completely useless on Windows platforms. |
||||||||||||||
|
|
|
The reason there's a Note that |
||
|
|
|
|
To add to Aaron's comment - in C++0x we are finally getting real Unicode char types: char16_t and char32_t and also Unicode string literals. |
||
|
|
|
|
wchar_t is a bit of a hangover from before unicode standardisation. Unfortunately it's not very helpful because the encoding is platform specific (and on Solaris, locale-specific!), and the width is not specified. In addition there are no guarantees that utf-8/16/32 codecvt facets will be available, or indeed how you would access them. In general it's a bit of a nightmare for portable usage. Apparently c++0x will have support for unicode, but at the current rate of progress that may never happen... |
||
|
|