如何在仅使用 、、、<iostream><string><cstdlib>、<stdio.h> 和 <cassert>的情况下将字符串转换为

How do I convert a string to a double while only using <iostream>, <string>, <cstdlib>, <stdio.h>, and <cassert>?

本文关键字:lt gt cassert 情况下 字符串 转换 cstdlib iostream string stdio      更新时间:2023-10-16

我是C++的新手,我的老师给了我一个要写的练习程序(这只是为了练习……不是家庭作业,不值得任何分数,所以不要担心),我要做的是从标准输入流中读取输入,将其与一些任意字符串进行比较,然后在项目后期我必须将其转换为double(因此我不能直接将其作为double读取)。

到目前为止,我可以读取它并将其存储为字符串string input; cin >> input;,但是,我不知道如何将其转换为双精度。问题是我只能使用以下库:

<iostream>, <string>, <cstdlib>, <stdio.h>, and <cassert>.

我在cstdlib中看到了atof,但它只接受了char *,而不是字符串。有什么建议吗?

简单:

#include <string>
std::string s = "0.5";
double d = std::stod(s);

我已经在cstdlib中查看了atof,但它只接受char *而不是string

对字符串调用c_str会为其内容提供一个char const *,并将其传递给C库函数,因此可以执行

 atof(s.c_str())  // where s is an std::string

试试这个:

#include <sstream>
double a;
const std::string str = "1.0";
std::istringstream is(str);
is >> a;

C++字符串类使用C字符数组作为其低级存储。你可以使用这个取回那个字符数组

http://www.cplusplus.com/reference/string/string/c_str/