作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 C++ 的新手,我该怎么做才能执行如下操作:
getline(textfile, txtline);
int i = 0;
while (textline[i] != ' ') // Until space
{
if (isdigit(txtline[i]) == true)
int n = atoi(txtline[i]);
// Then code to use n
i++;
}
atoi()
正在生成错误,但我不只是向它传递了一个字符吗?
这是完整的错误:
myqueens.cpp:32:11: error: no matching function for call to 'atoi'
int n = atoi(txtline[i]);
^~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/include/stdlib.h:132:6: note: candidate function not viable: no known conversion from 'value_type' (aka 'char') to 'const char *' for 1st argument; take the address of the argument with &
int atoi(const char *);
^
最佳答案
错误是 atoi() 需要一个字符串(即 char*)。因此,调试后可以得到消息:cannot convert from 'const char' to 'char[]'。
所以,如果你想将textline[i]转换成int,你可以使用
int n = textline[i] - '0';
关于c++ - atoi(textline[c]) 遍历 getline?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31063657/
我是一名优秀的程序员,十分优秀!