- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试读取具有以下格式的文件:1,2,4,6,8,12,12, .我想使用 getline() 和一个 stringstream 对象来分隔输入并在转换为整数后将其存储到一个 vector 中。它有效,我可以看到输出能够与数字 1 相加,但在完成转换文件中的所有数字后它仍然抛出异常。
输出:2个3个5个791313
#include <stdio.h>
#include <string>
#include <iostream>
#include <vector>
#include <fstream>
#include <sstream>
#include <algorithm>
using namespace std;
int main (int argc, char** argv){
ifstream infile;
vector <int> vect;
infile.open("tested");
if(!infile.is_open()){
cout<<"File did not open"<<endl;
}
else{
while(!infile.eof()) {
string line;
getline(infile, line);
stringstream ss(line);
while (ss){
string p;
getline(ss, p, ',');
int x = stoi(p);
cout<<x+1<<endl;
vect.push_back(x);
}
}
int i=0;
while(i<vect.size()){
int e = vect[i];
cout<<e<<endl;
i++;
}
sort(vect.begin(), vect.end());
int j=0;
while(j<vect.size()){
int n = vect[j];
cout<<n<<endl;
j++;
}
cout<<"end reached"<<endl;
}
}
最佳答案
您的代码比需要的更复杂。您根本不需要使用 std::stoi()
。因为您已经在使用 std::stringstream
,所以让它为您解析整数。
#include <string>
#include <iostream>
#include <vector>
#include <fstream>
#include <sstream>
#include <algorithm>
using namespace std;
int main (){
ifstream infile("tested");
if (!infile.is_open()){
cout << "File did not open" << endl;
}
else{
vector<int> vect;
string line;
while (getline(infile, line)) {
istringstream iss(line);
int x; char c;
while (iss >> x) {
cout << x + 1 << endl;
vect.push_back(x);
iss >> c;
}
}
for (size_t i = 0; i < vect.size(); ++i){
cout << vect[i] << endl;
}
sort(vect.begin(), vect.end());
for (int j = 0; j < vect.size(); ++j){
cout << vect[j] << endl;
}
cout << "end reached" << endl;
}
return 0;
}
关于c++ - 我不断收到 'std::invalid_argument' what() : stoi exception thrown for seemingly no reason?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59242774/
I was wondering which way is the most recommended one in modern C++ to convert a string to a numb
我有: -Windows 7/32 位上的 cygwin 1.7.25 -g++ --版本 --> g++ (GCC) 4.8.2 -libstdc++.a --> gcc-g++-4.8.2-1 尝
我已经在 my posts 之一中询问过关于 boost::lexical_cast 的替代方案的问题,在许多回复中,我有一个建议 stoi 作为可行的替代方案。 我决定对其进行测试,令我惊讶的是,此
我正在使用最新版本的 C++,我正在尝试运行以下代码。但是,它一直告诉我 stoi “未在此范围内声明”。我是 C++ 的新手,所以如果您有任何想法,请分享。 #include using name
这个问题在这里已经有了答案: Function stoi not declared (13 个答案) 关闭 8 年前。 我正在尝试使用 stoi() 将 string 转换为 int 但我收到的错误
我正在通过编写来自用户的简单输入/输出来练习我的 C++。我现在已经搜索了一个多小时如何将字符串转换为 int。每个答案都是不同的,并且需要其他东西。 我正在使用 Code::Blocks v.13.
这个问题在这里已经有了答案: cygwin g++ std::stoi "error: ‘stoi’ is not a member of ‘std (4 个答案) 关闭 6 年前。 所以这个错误已
我有这个代码,它给我错误 terminating with uncaught exception of type std::out_of_range: stoi: out of range 我已经确定
我正在尝试将字符串解析为整数,但我不确定自己做错了什么: string input; cin >> input; int s = std::stoi(input); 这不会构建并引发错误:“stoi”
我正在使用代码块,但我无法使 stoi() 函数正常工作。我阅读了有关此问题的其他问题,但无法解决。我检查了 C+11,我正在使用命名空间 std 并且我有字符串 header 。我不知道如何解决这个
我是 Java 新手,我正在寻找 Java 中 C++ 中的类似 stoi() 的函数。 我想要这样的: 如果有像“123ABC”这样的字符串,我想提取整数中的“123”并获取“A”的索引。 我一直在
正如您所知,std::sto* 函数系列的工作方式是读取字符串中的数字,直到找到非数字,如下所示: std::string pseudoNum = "123haha"; int num = std::
我尝试编写一个将数字字符串转换为整数的函数。使用g++ 9.2.0在VS代码上运行代码时,输出错误,但是在repl.it上运行时,输出正确。这是我的代码: #include #include
我对传递到 std::stoi 的整数字符串的限制感到困惑。一个整数是 32 位的,我没记错吗?在带符号的 32 位整数中,范围可以从 −2,147,483,648 到 2,147,483,647。我
我只是通过 HackerRanks 练习我的 C++,我正在做这个问题: Problem Statement You are given an integer N. Find the digits i
我有以下测试程序: #include int main(int argc, char* argv[]) { try { return std::stoi("300012723
我上周为一项作业创建了一个复数类,我们的下一个作业是将此类修改为模板类。部分赋值重载了提取运算符,最初只处理 int 时,我将整个输入行作为一个字符串,并为实部和虚部制作子字符串,然后我使用 stoi
大多数日常用例都已转换为标准库中可用的函数。但是,我想知道其中一些是如何在幕后工作的。比如 std::stoi 背后的实际代码是什么? 最佳答案 最直接的方法是调用适当的 C 函数,在本例中为 str
c++的stoi函数定义为: int stoi(const std::string& str, std::size_t* pos = 0, int base = 10); 如您所见,base 参数默认
我正在尝试使用 stoi将字符串转换为整数,但它说它没有声明。我有标准库和 包括在内,但它仍然显示 [Error] 'stoi' was not declared in this scope 代码如下
我是一名优秀的程序员,十分优秀!