using nameplace std怎么使用
时间: 2023-05-31 12:05:12 浏览: 117
C++ using namespace std 用法深入解析
5星 · 资源好评率100%
使用 namespace std 可以简化 C++ 标准库的引用方式。
示例:
```cpp
#include <iostream>
using namespace std; // 引入 std 命名空间
int main() {
cout << "Hello, World!" << endl;
return 0;
}
```
在上面的示例中,使用了 `using namespace std` 将 std 命名空间引入,这样在输出语句中就可以直接使用 `cout` 和 `endl` 而不需要写成 `std::cout` 和 `std::endl`。
阅读全文