Convert float to string with precision amp; number of decimal digits specified?(使用精度 amp; 将浮点数转换为字符串指定的小数位数?)
问题描述
如何在 C++ 中将浮点数转换为字符串,同时指定精度 &小数位数?
How do you convert a float to a string in C++ while specifying the precision & number of decimal digits?
例如:3.14159265359 ->3.14"
推荐答案
典型的方法是使用 stringstream
:
#include <iomanip>
#include <sstream>
double pi = 3.14159265359;
std::stringstream stream;
stream << std::fixed << std::setprecision(2) << pi;
std::string s = stream.str();
参见固定
使用固定浮点表示法
将 str 流的 floatfield
格式标志设置为 fixed
.
Sets the floatfield
format flag for the str stream to fixed
.
当 floatfield
设置为 fixed
时,浮点值使用定点表示法写入:该值用与小数部分中的位数完全相同的数字表示由 precision 字段 (precision
) 指定并且没有指数部分.
When floatfield
is set to fixed
, floating-point values are written using fixed-point notation: the value is represented with exactly as many digits in the decimal part as specified by the precision field (precision
) and with no exponent part.
和setprecision.
对于技术目的的转换,例如将数据存储在 XML 或 JSON 文件中,C++17 定义了 to_chars 系列函数.
For conversions of technical purpose, like storing data in XML or JSON file, C++17 defines to_chars family of functions.
假设一个兼容的编译器(我们在撰写本文时缺乏),可以考虑这样的事情:
Assuming a compliant compiler (which we lack at the time of writing), something like this can be considered:
#include <array>
#include <charconv>
double pi = 3.14159265359;
std::array<char, 128> buffer;
auto [ptr, ec] = std::to_chars(buffer.data(), buffer.data() + buffer.size(), pi,
std::chars_format::fixed, 2);
if (ec == std::errc{}) {
std::string s(buffer.data(), ptr);
// ....
}
else {
// error handling
}
这篇关于使用精度 & 将浮点数转换为字符串指定的小数位数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用精度 & 将浮点数转换为字符串指定的小数位数?
基础教程推荐
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01