gpt4 book ai didi

c++ - std::stol 问题 - 'std::invalid_argument' what(): stol

转载 作者:行者123 更新时间:2023-11-27 22:44:59 28 4
gpt4 key购买 nike

我对 std::stol 有疑问。我找到的关于 std::stolstd::stoi 问题的所有答案都在处理 C++11 编译/构建。

std::string myString;
long myLong = std::stol(myString);

当我使用 std::stol() 时,出现以下错误:

terminate called after throwing an instance of 'std::invalid_argument'
what(): stol
Aborted (core dumped)

有什么想法吗?使用 gcc -std::C++11 构建工作正常。注意:我认为这是我使用的第一个 C++11 表达式。

最佳答案

当您的字符串不包含可以成功转换为 long 的有效数字时,这是预期的行为。

为避免程序被终止,您可以将代码包装在try...catch block 中。并处理异常。

关于c++ - std::stol 问题 - 'std::invalid_argument' what(): stol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44279390/

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