gpt4 book ai didi

c++ istringstream()函数将字符串转换为int引发错误

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:40 25 4
gpt4 key购买 nike

我有一串数字。我正在尝试使用 istringstream 将其打印为字符串中每个单个数字的 int 类型。如果将整个字符串作为参数传递给 main 中的转换函数,它工作正常,但如果我按索引传递它,则会引发错误。

如何使此代码使用索引将字符串数组中的每个单个数字打印为 int。

这是我的代码。

#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int strToNum(string str)
{
istringstream ss(str);
int n;
ss>>n;
cout<<n;
}

int main()
{
string str = "123";
for(int i=0; i<str.length(); i++)
//strToNum(str); Works fine
strToNum(str[i]); //raises error
}

最佳答案

str[i] 是一个 char,而 strToNum 需要一个 string,因此类型错误.

关于c++ istringstream()函数将字符串转换为int引发错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18569477/

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