本文介绍了将单个字符转换为int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将char a [0]转换为int b [0]其中b是一个空的动态分配的int数组
How can I convert char a[0] into int b[0] where b is a empty dynamically allocated int array
我试过
char a[] = "4x^0";
int *b;
b = new int[10];
char temp = a[0];
int temp2 = temp - 0;
b[0] = temp2;
我想要4,但它给我ascii值52
I want 4 but it gives me ascii value 52
也可以做
a[0] = aoti(temp);
给我
错误:从'char'到'const char *'的无效转换b $ b初始化'int atoi(const char *)'的参数1
gives meerror: invalid conversion from ‘char’ to ‘const char*’initializing argument 1 of ‘int atoi(const char*)’
推荐答案
You need to do:
int temp2 = temp - '0';
。
这篇关于将单个字符转换为int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!