在所有的c++標(biāo)準(zhǔn)函數(shù)庫中的內(nèi)容都生命在std名空間下面厂财。
如果只是單純include
#include <iostream>
int main(void) {
std::cout<<"abc"<<endl;//在程序中使用cout的時候需要
}
如果使用了using衅枫,可以將指定的內(nèi)容導(dǎo)入當(dāng)前的名空間
#include <iostream>
using std::cout;
int main(void) {
cout<<"abc"<<endl;
}
如果使用了using namespace std可以導(dǎo)入所有std名空間中的內(nèi)容
#include <iostream>
using namespace std;
int main(void) {
cout<<"abc"<<endl;
}