gpt4 book ai didi

c++ - 使用带符号字符输入的 isalnum - Visual C++

转载 作者:太空狗 更新时间:2023-10-29 20:58:05 26 4
gpt4 key购买 nike

我有一个非常简单的程序,我在其中使用 isalnum 函数来检查字符串是否包含字母数字字符。代码是:

#include "stdafx.h"
#include <iostream>
#include <string>
#include <locale>
using namespace std;

int _tmain(int argc, _TCHAR* argv[]) {

string test = "(…….";

for ( unsigned int i = 0; i < test.length(); i++) {
if (isalnum(test[i])) {
cout << "True: " << test[i] << " " << (int)test[i] << endl;
}
else {
cout << "False: " << isalnum(test[i]) << test[i] << " " << (int)test[i] << endl;
}
}

return 0;
}

我为此代码段使用 Visual Studio Desktop Edition 2013。问题:
1. 当此程序在 Debug模式下运行时,程序失败并显示调试断言:“表达式 c >= -1 && c <= 255”
ith<​​ 位置打印字符会产生一个负整数 (-123)。将所有对 isalnum 的调用转换为接受 unsigned char 作为输入会导致上述错误消失。

我检查了 isalnum 的文档,它接受 char 类型的参数。那为什么这个代码片段会失败呢?我确信我在这里遗漏了一些微不足道的东西,但欢迎任何帮助。

最佳答案

isalnum函数在 <cctype> 中声明(<ctype.h> 的 C++ 版本)——这意味着你真的应该有 #include <cctype>在源文件的顶部。你可以在没有 #include 的情况下调用它指令因为 "stdafx.h"或标准 header 之一(可能是 <locale> )包含它——但依赖它不是一个好主意。

isalnum和 friend 来自C。isalnum函数接受类型为 int 的参数, 它必须在 unsigned char 的范围内等于EOF (通常是 -1 )。如果参数具有任何其他值,则行为未定义。

烦人的是,这意味着如果是普通的 char恰好被签名,传递一个 charisalnum如果该值恰好为负且不等于 EOF,则会导致未定义的行为.平原的符号 char是实现定义的;它似乎已在大多数现代系统上签名。

C++ 添加了一个模板 函数isalnum它采用任何字符类型的参数和 std::locale 类型的第二个参数.它的声明是:

template <class charT> bool isalnum (charT c, const locale& loc);

我相当确定这个版本的 isalnum不会遇到与 <cctype> 中相同的问题.你可以传递一个 char值,它会正确处理它。您还可以向它传递一些宽字符类型的参数,例如 wchar_t .但它需要两个参数。由于您只将一个参数传递给 isalnum() , 你没有使用这个版本;你正在使用 isalnum<cctype> 中声明.

如果你想使用这个版本,你可以将默认语言环境作为第二个参数传递:

std::isalnum(test[i], std::locale())

或者,如果您确定您只使用窄字符(类型 char ),您可以将参数转换为 unsigned char :

std::isalnum(static_cast<unsigned char>(test[i]))

关于c++ - 使用带符号字符输入的 isalnum - Visual C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28589051/

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