std::setprecision
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <iomanip> 中定义
|
||
/*unspecified*/ setprecision( int n ); |
||
当在表达式中使用out << setprecision(n)或in >> setprecision(n),设置参数的流
precision
out
或in
准确地n
. 原文:
When used in an expression out << setprecision(n) or in >> setprecision(n), sets the
precision
parameter of the stream out
or in
to exactly n
. 目录 |
[编辑] 参数
n | - | 精度的新的价值
|
[编辑] 返回值
返回一个对象的类型不明确等,如果
str
类型的输出流std::basic_ostream<CharT, Traits>的名称或类型std::basic_istream<CharT, Traits>的输入流,然后表达str << setprecision(n)或str >> setprecision(n)的行为就好像下面的代码被执行原文:
Returns an object of unspecified type such that if
str
is the name of an output stream of type std::basic_ostream<CharT, Traits> or an input stream of type std::basic_istream<CharT, Traits>, then the expression str << setprecision(n) or str >> setprecision(n) behaves as if the following code was executed:str.precision(n);
[编辑] 示例
#include <iostream> #include <iomanip> #include <cmath> #include <limits> int main() { const long double pi = std::acos(-1.L); std::cout << "default precision (6): " << pi << '\n' << "std::precision(10): " << std::setprecision(10) << pi << '\n' << "max precision: " << std::setprecision(std::numeric_limits<long double>::digits10) << pi << '\n'; }
输出:
default precision (6): 3.14159 std::precision(10): 3.141592654 max precision: 3.14159265358979324
[编辑] 另请参阅
(C++11) (C++11) |
使用的格式为浮点I / O 原文: changes formatting used for floating-point I/O (函数) |