Why does the constructor and open method of the std::(i|o)fstream classes take the name of a file as a parameter in the form of a const char* instead of an std::string? It seems like the creators of the STL would want to use what they had written instead of using the type they wrote a class to replace.
|
|
||||
|
Class It is true that these days we often see people who encourage C++ programmers to use Yes, it is possible to get away with using |
|||||||||||||||||||||
|
|
The It's merely out of political and temporal reality that they never got around to this before shipping C++98, and nobody bothered bringing it up again because you could always solve it with C++0x fixes this (see 27.9.1.6). Welcome to C++. |
||||
|
|
|
It's mainly for historical reasons, as far as I know. |
|||||||||||||
|
|
My bet is that the |
|||
|
|
|
Just looking through my G++'s This suggests to me that the iostreams library was designed to be independent of the string library, so that if you didn't use This also suggests to me in the C++0x standardization viewed this as a design flaw, and decided that the inconvenience of making the iostreams library independent of the string library just wasn't worth it. (I can't be bothered to go find a working draft of the C++0x spec, or systematically check all of the iostreams related headers to confirm any of this.) |
||||
|

historytag, as I'm sure there'll be a historical reason behind it. – Xeo May 12 '11 at 0:47std::string const&, so this discussion is purely historical. – ildjarn May 12 '11 at 0:54stdlibrary yet. :) – Xeo May 12 '11 at 0:56