应该使用哪个函数将字符串转换为长双精度?

发布于 2024-12-04 04:44:44 字数 165 浏览 0 评论 0原文

请注意,一般来说,doublelong double 不同。

strtod 将 string 转换为 double,但是应该使用哪个函数将 string 转换为 long double 呢?

Note that in general, double is different from long double.

strtod converts string to double, but which function should be use to converting string to long double?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

貪欢 2024-12-11 04:44:45

您可以使用 istream 从字符串中读取 long double 。请参阅此处 http://www.cplusplus.com/reference/iostream/ istream/operator%3E%3E/

如果您喜欢 scanf 系列函数,请使用 %Lf 阅读

You can use istream to read long double from string. See here http://www.cplusplus.com/reference/iostream/istream/operator%3E%3E/

If you like scanf family of functions, read with %Lf

毁虫ゝ 2024-12-11 04:44:44

在 C++03 中,使用 boost::lexical_cast,或者:

std::stringstream ss(the_string);
long double ld;
if (ss >> ld) {
    // it worked
}

在 C99 中,使用 strtold

在 C89 中,将 sscanf%Lg 结合使用。

在 C++11 中使用 stold

每个接受的格式可能存在细微差别,因此请先检查详细信息...

In C++03, use boost::lexical_cast, or:

std::stringstream ss(the_string);
long double ld;
if (ss >> ld) {
    // it worked
}

In C99, use strtold.

In C89, use sscanf with %Lg.

In C++11 use stold.

There may be subtle differences as to exactly which formats each one accepts, so check the details first...

十雾 2024-12-11 04:44:44

您已将问题标记为“C++”,所以我将给您一个 C++ 答案:

为什么不直接使用流?

std::stringstream ss(myString);
long double x;
ss >> x;

You've tagged your question as "C++", so I'm going to give you a C++ answer:

Why not just use streams?

std::stringstream ss(myString);
long double x;
ss >> x;
記柔刀 2024-12-11 04:44:44

在 C++ 中,我只能推荐 boost::lexical_cast (或者一般通过 IOStreams)。

在 c ?不知道。

In c++, I can only recommend boost::lexical_cast (or in general via the IOStreams).

In c ? no idea.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文