gpt4 book ai didi

c# - C# 中的 C++ std::setprecision

转载 作者:太空狗 更新时间:2023-10-29 17:49:18 26 4
gpt4 key购买 nike

我通过移植一些遗留 C++ 代码来学习 C#,并希望保持输出相同。以前是什么

output << std::setprecision(10) << (double) value;

我想现在应该是

output.Write("{0:F10}", value);

但这并没有起到作用。具体值 > 1 会得到更多的数字。一个常见的在线建议是先使用 Math.Round,但如果总长度为 < 10,则会附加零。

所以我放在一起:

    // std::setprecision is not exactly the same as ":F10", mirror original behavior
static string setPrecision(double value) {
string ret = value.ToString();

// Don't just Substring(0, 11), we need to apply rounding,
// and don't always do this, we don't want to append zeroes,
// for 10 digits + period, with 0.. not counting for total
if(ret.Length > digits + 1)
ret = Math.Round(value, digits + (value < 1 ? 1 : 0) - ret.IndexOf('.')).ToString();

return ret;
}

其中 digits 是一个静态常量;我当然可以将它设为一个变量,但对于这个项目来说,这样做意义不大。

不过,这似乎过于复杂。是否有更优雅的方式来获得传统行为?

根据一些示例 I/O 的要求

// C++
double test = 0; out << std::setprecision(10);
test = 0.123456780; out << test << '\n';
test = 0.0123456781; out << test << '\n';
test = 0.11234567819; out << test << '\n';
test = 1.00234567899; out << test << '\n';

// C#
double test = 0;
test = 0.123456780; output.WriteLine(setPrecision(test));
test = 0.0123456781; output.WriteLine(setPrecision(test));
test = 0.11234567819; output.WriteLine(setPrecision(test));
test = 1.00234567899; output.WriteLine(setPrecision(test));

两者都产生:

0.12345678
0.0123456781
0.1123456782
1.002345679

与此同时,我注意到所有标题零似乎都不计入总数,而只是第一个;

// C++
test = 0.012345678906; out << test << '\n'; // 0.01234567891
test = 0.0012345678906; out << test << '\n'; // 0.001234567891
test = 0.00012345678906; out << test << '\n'; // 0.0001234567891

// C#
test = 0.012345678906; output.WriteLine(setPrecision(test)); // 0.0123456789
test = 0.0012345678906; output.WriteLine(setPrecision(test)); // 0.0012345679
test = 0.00012345678906; output.WriteLine(setPrecision(test)); // 0.0001234568

如果没有更直接的解决方案,我将不得不更正。

最佳答案

听起来您只想打印具有特定有效数字位数的数字。您可以简单地使用 G 格式字符串来指定要使用的位数。

output.Write("{0:G10}", value);

关于c# - C# 中的 C++ std::setprecision,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32299942/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com