I am well aware of the use of namespaces, but from time to time I come across a use that uses a particular class. For instance:
#include <string> using namespace std; (...)
However - from time to time I see:
using std::string;
How do I interpret “use” in this case?
Greetings
source share