stoi 函数使程序崩溃并显示错误消息
"****@****:~> g++ -std=c++0x m1.cpp stimulation.h stims.h Task.h exoskeleton.h ARAIG_Sensors.h Profile.h
ARAIG_Sensors.h:1:9: warning: #pragma once in main file [enabled by default]
Profile.h:1:9: warning: #pragma once in main file [enabled by default]
*****@****:~> a.out StimulationConfig.csv TaskConfiguration.csv SampleProfileConfig.csv SampleOutput.txt
First : a.out
Second : StimulationConfig.csv
terminate called after throwing an instance of 'std::invalid_argument'
what(): stoi
Aborted
我不明白为什么,有一个实例被传递到函数中,但仍然返回错误。有人可以帮我解决问题吗?
#pragma once
#include <string>
#include <vector>
#include "Task.h"
#include <ostream>
#include "ARAIG_Sensors.h"
namespace m1
{
class Profile
{
ARAIG_Sensors araig;
std::vector<Task> ToRun;
std::vector<Task> Completed;
std::string studentFN;
std::string studentLN;
std::string studentSN;
std::string flightFN;
std::string flightLN;
std::string flightEN;
std::ostream& os;
struct calibration {
int Max;
int Min;
};
calibration cal;
public:
Profile(std::string fn, std::ostream& o, ARAIG_Sensors& a) : os(o)
{
araig = a;
//parsing student
std::ifstream infile(fn);
std::string line;
std::getline(infile, line);
int f = line.find_first_of(",");
studentFN = line.substr(0, f);
line = line.substr(f + 1);
f = line.find_first_of(",");
studentLN = line.substr(0, f);
studentSN = line.substr(f + 1);
//parsing flight
std::getline(infile, line);
f = line.find_first_of(",");
flightFN = line.substr(0, f);
line = line.substr(f + 1);
f = line.find_first_of(",");
flightLN = line.substr(0, f);
flightEN = line.substr(f + 1);
//parsing calibration
std::getline(infile, line);
f = line.find_first_of(",");
cal.Min = stoi(line.substr(0, f));
std::cout << cal.Min << std::endl;
line = line.substr(f + 1);
cal.Max = stoi(line);
std::list<Task> temp = araig.gettasks();
while (std::getline(infile, line))
{
for (std::list<Task>::iterator i = temp.begin(); i != temp.end(); i++)
{
if ((*i).getName() == line)
{
ToRun.push_back(*i);
break;
}
}
}
}
void displayToRun()
{
for (std::vector<Task>::iterator i = ToRun.begin(); i != ToRun.end(); i++)
{
(*i).execute(os);
}
}
void displayCompleted()
{
for (std::vector<Task>::iterator i = Completed.begin(); i != Completed.end(); i++)
{
(*i).execute(os);
}
}
void displayNext()
{
std::vector<Task>::iterator i = ToRun.begin();
(*i).execute(os);
}
void displayLast()
{
std::vector<Task>::iterator i = Completed.end();
(*i).execute(os);
}
void Run()
{
//excute next Task and move Task to Completed
std::vector<Task>::iterator i = ToRun.begin();
Task t = *i;
t.execute(os);
ToRun.erase(i);
Completed.push_back(t);
}
};
}
最佳答案
这意味着你正在给 std::stoi() 错误的输入,所以它会抛出一个 std::invalid_argument你没有捕捉到的异常。
std::stoi, std::stol, std::stoll :
Exceptions
std::invalid_argumentif no conversion could be performed
std::out_of_rangeif the converted value would fall out of the range of the result type or if the underlying function (std::strtolorstd::strtoll) setserrnotoERANGE.
std::terminate() is called by the C++ runtime when exception handling fails for any of the following reasons:
1) an exception is thrown and not caught (it is implementation-defined whether any stack unwinding is done in this case)
您需要仔细检查您尝试转换为整数的输入字符串值。它们不代表整数。
关于c++ - 在抛出 'std::invalid_argument' what() : stoi 实例后终止调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41070101/
我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer
我的瘦服务器配置了nginx,我的ROR应用程序正在它们上运行。在我发布代码更新时运行thinrestart会给我的应用程序带来一些停机时间。我试图弄清楚如何优雅地重启正在运行的Thin实例,但找不到好的解决方案。有没有人能做到这一点? 最佳答案 #Restartjustthethinserverdescribedbythatconfigsudothin-C/etc/thin/mysite.ymlrestartNginx将继续运行并代理请求。如果您将Nginx设置为使用多个上游服务器,例如server{listen80;server
在MRIRuby中我可以这样做:deftransferinternal_server=self.init_serverpid=forkdointernal_server.runend#Maketheserverprocessrunindependently.Process.detach(pid)internal_client=self.init_client#Dootherstuffwithconnectingtointernal_server...internal_client.post('somedata')ensure#KillserverProcess.kill('KILL',
我正在查看instance_variable_set的文档并看到给出的示例代码是这样做的:obj.instance_variable_set(:@instnc_var,"valuefortheinstancevariable")然后允许您在类的任何实例方法中以@instnc_var的形式访问该变量。我想知道为什么在@instnc_var之前需要一个冒号:。冒号有什么作用? 最佳答案 我的第一直觉是告诉你不要使用instance_variable_set除非你真的知道你用它做什么。它本质上是一种元编程工具或绕过实例变量可见性的黑客攻击
在我的应用程序中,我需要能够找到所有数字子字符串,然后扫描每个子字符串,找到第一个匹配范围(例如5到15之间)的子字符串,并将该实例替换为另一个字符串“X”。我的测试字符串s="1foo100bar10gee1"我的初始模式是1个或多个数字的任何字符串,例如,re=Regexp.new(/\d+/)matches=s.scan(re)给出["1","100","10","1"]如果我想用“X”替换第N个匹配项,并且只替换第N个匹配项,我该怎么做?例如,如果我想替换第三个匹配项“10”(匹配项[2]),我不能只说s[matches[2]]="X"因为它做了两次替换“1fooX0barXg
我已经从我的命令行中获得了一切,所以我可以运行rubymyfile并且它可以正常工作。但是当我尝试从sublime中运行它时,我得到了undefinedmethod`require_relative'formain:Object有人知道我的sublime设置中缺少什么吗?我正在使用OSX并安装了rvm。 最佳答案 或者,您可以只使用“require”,它应该可以正常工作。我认为“require_relative”仅适用于ruby1.9+ 关于ruby-主要:Objectwhenrun
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
我已经像这样安装了一个新的Rails项目:$railsnewsite它执行并到达:bundleinstall但是当它似乎尝试安装依赖项时我得到了这个错误Gem::Ext::BuildError:ERROR:Failedtobuildgemnativeextension./System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/rubyextconf.rbcheckingforlibkern/OSAtomic.h...yescreatingMakefilemake"DESTDIR="cleanmake"DESTDIR="