vote up 0 vote down star

As I understand it, Windows #defines TCHAR as the correct character type for your application based on the build - so it is wchar_t in UNICODE builds and char otherwise.

Because of this I wondered if std::basic_string<TCHAR> would be preferable to std::wstring, since the first would theoretically match the character type of the application, whereas the second would always be wide.

So my question is essentially: Would std::basic_string<TCHAR> be preferable to std::wstring on Windows? And, would there be any caveats (i.e. unexpected behavior or side effects) to using std::basic_string<TCHAR>? Or, should I just use std::wstring on Windows and forget about it?

flag

3 Answers

vote up 4 vote down check

I believe the time when it was advisable to release non-unicode versions of your application (to support Win95, or to save a KB or two) is long past: nowadays the underlying Windows system you'll support are going to be unicode-based (so using char-based system interfaces will actually complicate the code by interposing a shim layer from the library) and it's doubtful whether you'd save any space at all. Go std::wstring, young man!-)

link|flag
vote up 1 vote down

One thing to keep in mind. If you decide to use std::wstring all the way in your program, you might still need to use std::string if you are communicating with other systems using UTF8.

link|flag
If you're mixing wide and UTF8 strings, you can't rely on TCHAR anyway. – Mark Ransom Jun 6 at 14:03
vote up 1 vote down

I have done this on very large projects and it works great:

namespace std
{
#ifdef _UNICODE
    typedef wstring tstring;
#else
    typedef string tstring;
#endif
}

You can use wstring everywhere instead though if you'd like, if you do not need to ever compile using a multi-byte character string. I don't think you need to ever support multi byte character strings though in any modern application.

link|flag
1  
Likewise, although I possibly didn't put it in the std namespace at the time. – Matt Kane Jun 5 at 15:41
Technically, it is not legal to add it to the std namespace. :) I doubt many compilers will actually complain about it, but the std namespace is technically off limits. The only thing you're allowed to add to it is specializations of existing templates. – jalf Jun 5 at 18:21
MSVC++ didn't complain :) – Brian R. Bondy Jun 5 at 18:36
MSVC does not complain about a couple of things it should. Namely the use (or lack of) of the typename keyword. – Martin York Jun 5 at 19:47

Your Answer

Get an OpenID
or

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