gpt4 book ai didi

c++ - atoi(textline[c]) 遍历 getline?

转载 作者:行者123 更新时间:2023-11-30 02:38:09 25 4
gpt4 key购买 nike

我是 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/

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