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.)

link|improve this question

feedback

10 Answers

up vote 9 down vote accepted

Why is wchar_t needed? How is it superior to short (or __int16 or whatever)?

In the C++ world, wchar_t is its own type (I think it's a typedef in C), so you can overload functions based on this. For example, this makes it possible to output wide characters and not to output their numerical value. In VC6, where wchar_t was just a typedef for unsigned short, this code

wchar_t wch = L'A'
std::wcout << wch;

would output 65 because

std::ostream<wchar_t>::operator<<(unsigned short)

was invoked. In newer VC versions wchar_t is a distinct type, so

std::ostream<wchar_t>::operator<<(wchar_t)

is called, and that outputs A.

link|improve this answer
BTW: This behavior can be disabled in the project settings in new VCs (you should not but maybe it's needed for backwards compatibility) – Rüdiger Stevens Oct 23 '09 at 19:58
feedback

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.

link|improve this answer
6  
Amen. Dump the ANSI locale stuff entirely, in fact. Treat all text as utf8 (converting on input if you have to) and use the standard C library functions. That's the only sane way to do I18N in C. – Andy Ross Oct 23 '09 at 15:36
Unfortunatelly that won't always work. Some implementations of C standard library assume at most 2 bytes per character for multibyte strings and don't support UTF-8 locale. Search Michael Kaplan's blog for more info. – Nemanja Trifunovic Oct 23 '09 at 16:03
3  
Nemanja, Michael Kaplan is a prolific writer. Can you please be a little more specific about what to search for? – Rob Kennedy Oct 23 '09 at 16:05
1  
This is rather wrong, but I can't nail it down precisely. 2 simple counter-examples show a lot. On Windows, the universal encoding for wchar_t aka WCHAR is UTF-16, which is (A) not locale-specific and (B) definitely Unicode-based. On Mac OSX, wchar_t simply holds the Unicode code point. So, definitely not for backwards compatibility, it's how the two most common desktop OSes support Unicode. – MSalters Oct 26 '09 at 12:10
@MSalters but it's the worst form of unicode. Takes twice as much space as Ascii and doesn't support all unicode chars. It's only advantage is that it is easy to support the C string library – Martin Beckett Nov 29 '10 at 16:23
show 2 more comments
feedback

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:

char name[] = "Bob";

is much easier to understand than this:

int8 name[] = "Bob";

It's the same thing with wchar_t and int16.

link|improve this answer
Nice examples to make it really clear. – Rüdiger Stevens Oct 23 '09 at 20:00
wchar_t is not always the same size as int16, however. It is a type that varies in width from platform to platform, unfortunately... – fbrereto Oct 23 '09 at 22:50
Which is why C++0x introduces char16_t and char32_t, so you can use UTF16 or UCS4 explicitly while still retaining character semantics. – Porculus Nov 29 '10 at 16:37
feedback

The reason there's a wchar_t is pretty much the same reason there's a size_t or a time_t - it's an abstraction that indicates what a type is intended to represent and allows implementations to chose an underlying type that can represent the type properly on a particular platform.

Note that wchar_t doesn't need to be a 16 bit type - there are platforms where it's a 32-bit type.

link|improve this answer
feedback

wchar_t is the primitive for storing and processing the platform's unicode characters. Its size is not always 16 bit. On unix systems wchar_t is 32 bit (maybe unix users are more likely to use the klingon charaters that the extra bits are used for :-).

This can pose problems for porting projects esp if you interchange whar_t and short, or if you interchange wchar_t and xerces' XMLCh.

Therefore having wchar_t as a different type to short is very import for writing cross platform code. Cleaning up this was one of the hardest parts of porting our application to unix and then from VC6 to VC2005.

link|improve this answer
2  
As an aside, UNIX programs often skip wchar_t, representing text as UTF-8 much of the time :) – bdonlan Oct 23 '09 at 14:19
I know if I was redoing our app again I would favor utf-8 over ucs-16/utf16. – iain Oct 25 '09 at 17:21
feedback

As I read the relevant standards, it seems like Microsoft fcked this one up badly.

My manpage for the POSIX <stddef.h> says that:

  • wchar_t: Integer type whose range of values can represent distinct wide-character codes for all mem‐ bers of the largest character set specified among the locales supported by the compilation environment: the null character has the code value 0 and each member of the portable character set has a code value equal to its value when used as the lone character in an integer character constant.

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.

link|improve this answer
2  
I don't think that's a problem in Microsoft's implementation, but rather that the C++ spec doesn't really account for Unicode. What is a character set in Unicode? Does wchar_t have to be able to represent all Unicode code points, or just all code units? In the case of UTF16, a code unit is a 16-bit integer, and all of these can be represented by Microsoft's wchar_t. – jalf Oct 23 '09 at 14:41
2  
I think wide strings (L"blah") are UTF-16 encoded on Windows. So it is able to represent full Unicode, but is a multi-byte encoding (at least for some of the Unicode characters). ICBWT. – sbi Oct 23 '09 at 14:42
1  
If it's a multi-byte encoding, then it's 'range of values' can't really hold distinct values for all members of the character set, can it? – gnud Oct 25 '09 at 9:24
4  
@jalf - the whole point of wchar_t is to decode mutlibyte encodings into a simple representation with one character in each array position. The largest character set specified on Windows is Unicode. UTF-16 is not a character set, it's an encoding of Unicode. – gnud Oct 26 '09 at 22:53
1  
And what is a "character"? Even if you have a 32-bit wchar_t, the presence of combining forms means that your string may use multiple codepoints to represent what the user thinks of as a single character. – Porculus Nov 29 '10 at 16:41
show 3 more comments
feedback

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.

link|improve this answer
feedback

It is "superior" in a sense that it allows you to separate contexts: you use wchar_t in character contexts (like strings), and you use short in numerical contexts (numbers). Now the compiler can perform type checking to help you catch situations where you mistakenly mix one with another, like pass an abstract non-string array of shorts to a string processing function.

As a side node (since this was a C question), in C++ wchar_t allows you to overload functions independently from short, i.e. again provide independent overloads that work with strings and numbers (for example).

link|improve this answer
+1 for pointing out that wchar_t can be overloaded independently from short or int. – Michael Burr Oct 23 '09 at 14:49
feedback

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...

link|improve this answer
feedback

Except for a small, ISO 2022 japanese minority, wchar_t is always going to be unicode. If you are really anxious you can make sure of that at compile time:

#ifndef __STDC_ISO_10646__
#error "non-unicode wchar_t, unsupported system"
#endif

Sometimes wchar_t is 16bits sometimes 32bits, so what? Just use sizeof(wchar_t). wchar_t is NOT meant to be sent to disk nor to the network, it is only meant to be used in memory.

See also Should UTF-16 be considered harmful? on this site.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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