std::isspace 与 C++(语言环境版本)中的 std::isgraph 是相反的吗?也就是说,以下情况是否正确?
char c = getCharFromSomewhere();
std::locale loc = getLocaleFromSomewhere();
std::isspace(c, loc) != std::isgraph(c, loc)
当我测试时它们似乎是正确的,但我不能确定这在所有语言环境中都是正确的。
std::isspace 与 C++(语言环境版本)中的 std::isgraph 是相反的吗?也就是说,以下情况是否正确?
char c = getCharFromSomewhere();
std::locale loc = getLocaleFromSomewhere();
std::isspace(c, loc) != std::isgraph(c, loc)
当我测试时它们似乎是正确的,但我不能确定这在所有语言环境中都是正确的。