gpt4 book ai didi

c++ - 在 C++ 中 ToString ("00.00000") 的等价物是什么?

转载 作者:行者123 更新时间:2023-11-30 04:00:11 25 4
gpt4 key购买 nike

我尝试了以下方法来获取 .ToString("00.00000") 但失败了

char buf[500];
memset(buf, 0, sizeof(buf));
sprintf_s(buf, "%02.7f",abc);
std::string abc_str = buf;

我意识到 %02 没有任何影响,例如当我得到 7.0 时,结果是 7.0000000 而不是所需的 07.0000000,这里有什么问题吗?

谢谢!

最佳答案

C++ 中的等价物是:

#include <iostream>
#include <iomanip>

int main()
{
std::cout << std::setw(10) << std::setfill('0')
<< std::fixed << std::setprecision(7) << 7.0;
return 0;
}

输出:

07.0000000

如果您需要将其实际存储到 std::string 中,则:

#include <sstream>

std::ostringstream oss;
// ...
std::string s = oss.str();

关于c++ - 在 C++ 中 ToString ("00.00000") 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26478976/

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