std::
|
|
|
|
using namespace std;
std::
|
|
cout
std
namespace, btw.std::string
and std::vector<T>
for example. Both are located in string.h
and vector.h
libraries.
using std namespace;
brings in the whole std namespace - polluting the global namespace, which can cause naming conflicts. Go with JLBorges's advice.
|
|
std::
for other things.@rero92 (I can't understand how I to use std namespace |
TheIdeasMan |
using
statement.