- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我运行这个程序,
#include <iostream>
int main(int argc, char *argv[])
{
std::cout << std::stod("5.000e-M1") << std::endl;
}
我期望这样的结果:
terminate called after throwing an instance of 'std::invalid_argument'
what(): stod
但我得到了 5 个。对你来说正确吗?最好的问候
我处理 csv 文件,如果我有“5.000e-M1”,我需要一个错误而不是 5。你知道有这种行为的函数吗?
最佳答案
std::stod
指定调用 std::strtod
.从后者的文档(强调我的):
Function discards any whitespace characters (as determined by
std::isspace()
) until first non-whitespace character is found. Then it takes as many characters as possible to form a valid floating-point representation and converts them to a floating-point value.
5.000e-M1
不是有效的浮点表示,但 5.000
是,所以它接受并成功。
关于c++ - 应该回答什么 stod ("5.000e-M1")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42716508/
在运行使用Visual Studio 2013编译的此示例时,会引发“参数无效”错误。。据我所知,VS2013使用的是C++11标准,并且使用(从C++11开始的)标签和明确列出的(不区分大小写的)I
我的一个 friend 把他的程序发给我。他使用"stod" 函数将字符串转换为 double 。还有其他可能做这样的事情吗? 我的编译器显示错误“stod was not declared in t
这个问题在这里已经有了答案: Easiest way to convert int to string in C++ (29 个回答) Converting Input string to float
#include #include using namespace std; int main() { double var; string word("20.njhggh");
这个问题在这里已经有了答案: Why are floating point numbers inaccurate? (5 个答案) 关闭 5 年前。 我有一个字符串,我想使用 std::stod 将
这个问题在这里已经有了答案: cygwin g++ std::stoi "error: ‘stoi’ is not a member of ‘std (5 个答案) 关闭 6 年前。 我试图在 cy
我有一个代码让用户输入运输重量。我正在将这个数字转换为数学的 double ,并且使用 std::stod(); 它可以完美地工作;当用户未输入有效条目时,问题就出现了。我是 C++ 的新手,在 C#
我正在读取一个带有字符串的值,然后将其转换为 double 值。我希望诸如 2.d 之类的输入因 std::stod 而失败,但它会返回 2。有没有办法使用 std::stod 确保输入字符串中完全没
我正在尝试编译这个 example code #include // std::cout #include // std::string, std::stod int main ()
我正在编写一个简单的直线计算器。例如,用户可以输入两个方程(字符串),例如 y=5x+3 和 y=-3x+6。这个计算器最基本的特点是它会返回这两条线的交点。 我似乎无法弄清楚的障碍是如何将字符串解析
我正在为一个 C++ 项目工作,我需要将字符串转换为 double 字符串,但我一直收到错误“stod”未在此范围内声明。快速回复将不胜感激! #include #include #include
我正在尝试将键值参数作为 string 存储在名为 ModelConfig 的类中。然后我想自动将这些值转换为特定类型,使用自定义转换函数或使用标准函数 stod、stof、stoi 和类似。 如果我
有没有办法调整 std::stod() 以增加(字符串到 double )转换中的小数位数并强制它使用美国语言环境? 我有一个可以在控制台或图形用户界面模式下运行的 Qt 应用程序: if (opt-
这个问题在这里已经有了答案: Problems with std::stoi, not working on MinGW GCC 4.7.2 (2 个答案) 关闭 7 年前。 我无法编译以下代码 a
我运行这个程序, #include int main(int argc, char *argv[]) { std::cout << std::stod("5.000e-M1") << std
我试图在逗号是小数分隔符的德国语言环境中一起使用 boost::locale 和 std::stod 。考虑这个代码: boost::locale::generator gen; std::local
#include #include #include using namespace std; int main(){ stringstream ss; double ad =
我在 Sublime Text 2 中运行代码。它向我显示错误: item->open = std::stod(temp); 错误是: error: no member named 'stod' in
所以我还是 C++ 的新手,我想看看我是否可以使用下面的代码打印基于用户输入的结果。 代码: /* Input Example */ // Initialization // Euler's Cons
我在当前项目中收到意外行为。 我使用 DICOM 库 dcmtk 从一些 dicom 文件中读取信息,并使用 Qt 来显示图像。 在信息提取过程中,我必须转换格式为“\”(Dicom Tag Pixe
我是一名优秀的程序员,十分优秀!