gpt4 book ai didi

c++ - 用 swprintf_s 格式化 double 并发送到 OutputDebugStringW

转载 作者:行者123 更新时间:2023-11-30 05:42:56 27 4
gpt4 key购买 nike

我在调试窗口中格式化 double 打印输出时遇到问题。我尝试使用 swprintf_s 函数和 %d,该值是 0.804,但它根本不起作用。

enter image description here

我得到值 65384...我应该如何改进这段代码?

void MyOutputFunction(const wchar_t *format, double args)
{
wchar_t buf[2048];
swprintf_s(buf, _countof(buf), format, args);
OutputDebugStringW(buf);
}

最佳答案

您应该使用 %f(不是 %d)作为 double< 的格式说明符s.

关于c++ - 用 swprintf_s 格式化 double 并发送到 OutputDebugStringW,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30437603/

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