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

link|improve this question

58% accept rate
Because C is 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
feedback

closed as not a real question by Mat, pst, Yochai Timmer, Dori May 26 '11 at 8:19

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.

1 Answer

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 String for everything including building strings up from smaller strings, despite the fact (and this sort of blows your argument out of the water) that there is a more efficient StringBuffer.

You'll notice that String (and other parts of Java) haven't been standing still for the last decade, there have been many features added, such as the printf-like String.format added in Java5 - that should be proof enough that there are often improvements that can be made.

link|improve this answer
I didn't intend to start a rant? but this PString, wstring, CString, QString thing makes using libraries a little clunky :( – Łukasz Bownik May 26 '11 at 6:50
Yeach, improved, without braking compatibility. But in c++ environment it seems like everybody fufferes "not invented here syndrome" :| – Łukasz Bownik May 26 '11 at 6:51
feedback

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