gpt4 book ai didi

c++ - 无法将字符串转换为整数

转载 作者:行者123 更新时间:2023-11-27 23:08:04 24 4
gpt4 key购买 nike

我是 C++ 新手,问题是我无法将字符串转换为整数;你能帮忙吗?

    container *beg = NULL;
container *insert;
insert = new container;

std::ifstream data(filename);
std::string line;
std::getline(data, line);

for (container *i = insert; std::getline(data, line); i = i->nextCont)
{
std::stringstream lineStream(line);
std::string cell;
i->ID = atoi(cell.c_str);
for (box *j = i->beginBox; std::getline(lineStream, cell, ';'); j = j->next)
{
j->apples = atoi(cell.c_str);
}
}
return beg;

错误是:

错误 4 error C3867: 'std::basic_string,std::allocator>::c_str': 函数调用缺少参数列表;使用 '&std::basic_string,std::allocator>::c_str' 创建指向成员 e:\labs\3.container\3.container\class.cpp 109 1 3.container

错误 5 error C3867: 'std::basic_string,std::allocator>::c_str': 函数调用缺少参数列表;使用 '&std::basic_string,std::allocator>::c_str' 创建指向成员 e:\labs\3.container\3.container\class.cpp 112 1 3.container

最佳答案

也许添加括号来实际调用它:

j->apples = atoi(cell.c_str());
^^^

此外,您可能想研究将字符串转换为整数的其他方法,例如 std::stoistrtolistringstream

关于c++ - 无法将字符串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21929767/

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