So here's something I've always wondered. Typically if I want to use a
string I simply
using namespace std::string;
string myString;
But when do I actually need to include <string>. What does that
provide me and why, for some uses, do I not need it?
Thanks.
string I simply
using namespace std::string;
string myString;
But when do I actually need to include <string>. What does that
provide me and why, for some uses, do I not need it?
Thanks.
Comment