cernroot中using nameplace std
时间: 2024-06-03 19:12:46 浏览: 140
c++ 命名空间
在 Cern ROOT 中,使用 "using namespace std" 语句可以将 std 命名空间中的所有标识符引入到当前作用域中,以便可以直接使用 std 命名空间中的标识符,而无需使用 std:: 来限定。这样可以简化代码,但也可能导致命名冲突问题。因此,在头文件中使用 "using namespace std" 是不推荐的做法,应该使用命名空间限定符。在源文件中使用 "using namespace std" 可以依据个人偏好来决定是否使用。
阅读全文