gpt4 book ai didi

c++ - 为什么在 C++ 中使用 ispunct() 时不需要 std::?

转载 作者:IT老高 更新时间:2023-10-28 23:12:41 25 4
gpt4 key购买 nike

#include <iostream>
#include <string>
#include <cctype>

using std::string;
using std::cin;
using std::cout; using std::endl;

int main()
{
string s("Hello World!!!");
decltype(s.size()) punct_cnt = 0;
for (auto c : s)
if (ispunct(c))
++punct_cnt;
cout << punct_cnt
<< " punctuation characters in " << s << endl;
}

似乎我可以在没有 std:: 或声明 using std::ispunct; 的情况下使用 ispunct() 但我不能使用 std::coutstd::cin 执行此操作。为什么会这样?

最佳答案

这意味着 ispunct 是全局命名空间的一部分,而不是 std 命名空间的一部分。这可能是因为 ispunct 是从 C 带来的功能之一(因此它在 cctype 中)。

另一方面,coutcinstd 命名空间的一部分,而不是全局命名空间。

编辑:

至于 为什么 来自 C 的东西在全局命名空间中而不是在 std 命名空间中,我相信这与允许 C 代码通过 C++ 编译器进行最小更改进行编译有关,因为 C++ aims to be compatible with C .

根据评论,ispunct 允许,但不是必需,在全局命名空间中(但必需std 命名空间),在 <cctype> 中。但是,如果您改为包含 <ctype.h>,则 ispunct 将是要求在全局命名空间中。

关于c++ - 为什么在 C++ 中使用 ispunct() 时不需要 std::?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18047031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com