不用using namespace std怎么不报错
时间: 2023-10-29 09:12:58 浏览: 207
命名空间的使用,以及为何不用using namespace std,内含可运行代码
在代码中可以使用std::来代替using namespace std来指定命名空间。例如:
```c++
#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}
```
在这个例子中,我们使用std::cout和std::endl来输出字符串。这样做可以避免使用using namespace std,同时也能保证代码的可读性和可维护性。
阅读全文