提问人:Saeed Kiarsi Zadeh 提问时间:1/9/2020 更新时间:1/9/2020 访问量:308
c++ :检查它是否是类中的数字
c++ : check if it is a Number in class
问:
在这段代码中,我想知道两个数字是 Int 还是 String:
#include <iostream>
using namespace std;
class calculate{
private:
bool checkNumbers(int num1, int num2){
if(isdigit(num1) && isdigit(num2)){
return true;
}else{
return false;
}
}
public:
void sum(int x, int y){
bool chek=checkNumbers(x, y);
if(chek==true){
cout<< "yes it is Number"<< endl;
}else{
cout<< "Nope! String"<<endl;
}
}
};
int main()
{
calculate calulate;
calulate.sum(3, 2);
return 0;
}
但是在运行代码后,我只看到 Nope! 字符串,表示它是字符串。谁知道出了什么问题? 我用 isdigit 检查了数字,我只发送了两个数字
calulate.sum(3, 2);
但什么都没有!! 谢谢
答:
2赞
alteredinstance
1/9/2020
#1
您的问题在于您使用std::isdigit(int)
该函数旨在检查 a 是否等效于 10 个表示的十进制数字之一。但是,此函数仅适用于 48-57 的值。int
char
0123456789
int
int
应为 .如果你想让它解析,请使用 48-57、where is 、is 等...char
true
48
0
49
1
请注意,如果你给它传递一个像'3'这样的函数,你的函数会自然地解析为true,就像一位评论者所说的那样。这是因为.char
char(3) == int(51)
例如:
isdigit('1'); // This is true, because '1' is a "char" digit
isdigit(49); // This is true
isdigit(1); // This is false
isdigit(60); // This is false
0赞
Olaf Dietsche
1/9/2020
#2
num1
并被 std::isdigit
解释为字符。通常,这意味着 ASCII 字符。num2
作为 ASCII 字符,2 和 3 是控制字符,而不是数字,它们位于“0”(0x30)到“9”(0x39)的范围内
评论
isdigit(2)
是假的。 是真的。我不清楚你在这里想做什么,以及与此有什么关系。比如说,你能举一个你希望你的程序打印的例子吗?isdigit('2')
isdigit
"Nope! String"