atoi(textline[c]) 遍历 getline?

atoi(textline[c]) iterating through getline?

我是 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 int n
    i++;
}

atoi 正在生成错误,但我不只是向它传递了一个字符吗?

这是完整的错误:

myqueens.cpp:32:11: 错误:没有匹配函数来调用 '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:注意:候选函数不可行:没有已知的 'value_type' 转换(又名'char') 到 'const char *' 第一个参数;用 & 获取参数的地址 int atoi(const char *); ^

首先,您的代码中有一些拼写错误(txtline 而不是 textline)。

您还有一个索引边界错误:如果 textline 根本不包含 space,i 将脱离 textline 中的有效索引,因此您将访问无效数据。

至于 atoi 的错误:atoi 函数试图将 C 风格(以 null 结尾的)字符串转换为整数值。因此,您的用法是错误的:您传递的是 char,但是 atoi 需要 指针 char(在这种情况下,指针一个被解释为 C 风格字符串的字符)。您发布的代码究竟应该做什么?

如果您需要使用atoi,我建议您对 C 风格的字符串进行更多研究。如果您,我建议您使用更像 C++ 的东西,例如 stringstream,从字符串中获取整数。

错误是 atoi() 需要一个字符串(即 char*)。所以,调试后可以得到消息:cannot convert from 'const char' to 'char[]'.

所以,如果你想将textline[i]转换成int,你可以使用

int n = textline[i] - '0';