gpt4 book ai didi

c++ - 将整数转换为格式化的 LPCWSTR。 C++

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:05:42 26 4
gpt4 key购买 nike

我有一个使用 D3DXCreateTextureFromFile() 加载一些图像的 direct3d 项目。此函数采用 LPCWSTR 作为文件路径。我想加载一系列连续编号的纹理(即 MyImage0001.jpg、MyImage0002.jpg 等),但 C++ 的疯狂字符串让我感到困惑。

我如何:

for(int i=0; i < 3;i++)
{
//How do I convert i into a string path i can use with D3DXCreateTextureFromFile?
}

编辑:

我应该提到我正在使用 Visual Studio 2008 的编译器

最佳答案

一个选项是 std::swprintf :

wchar_t buffer[256];
std::swprintf(buffer, sizeof(buffer) / sizeof(*buffer),
L"MyImage%04d.jpg", i);

你也可以使用 std::wstringstream :

std::wstringstream ws;
ws << L"MyImage" << std::setw(4) << std::setfill(L'0') << i << L".jpg";
ws.str().c_str(); // get the underlying text array

关于c++ - 将整数转换为格式化的 LPCWSTR。 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2777751/

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