Why the hell everybody need to reinvent string class (instead of using std:wstring) ?
Or their own container and io cleasses ?
I come from Java environment and Java has only one blessed String class nobody complains about :)
|
Why the hell everybody need to reinvent string class (instead of using std:wstring) ? Or their own container and io cleasses ? I come from Java environment and Java has only one blessed String class nobody complains about :)
| |||
|
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
People have been rewriting things to be "better" since the first computers were created :-) It's likely they just consider the standard implementation deficient somehow. Me, I'm happy with it myself. In other words, I see nothing wrong with the standard C++ library. It'd be nice if it had a few more collection classes (BTrees, HashTables and so forth) but that's not a necessity. Even in Java, I generally use You'll notice that | |||||
feedback
|
OS-level. At the OS level there: is, was, and has been MANY conflicting ways to encode strings of words in various languages. Don't blame C, blame globalization. Java gracefully hides all this, but C exposes it due to being low-level. As of 2012, most software has chosen UTF-8 (i.e.std::string) with the notable holdout of Microsoft Windows using UTF-16 (i.e.std::wstring). – unixman83 Apr 21 at 9:32