我有一系列文件(New1.BMP、New2.BMP、...、New10.BMP)。
我需要创建一个变量来存储上述文件的名称,然后在另一个代码中使用它。
我当前的代码:
int LengthFiles =10;
char FilePrefix[100]="New";//This is actually passed to the function. Am changing it here for simplicity
char str[200],StrNumber[1];//str holds the file name in the end. StrNumber is used to convert number value to character
SDL_Surface *DDBImage[9]; // This is a SDL (Simple DIrectMedia Library) declaration.
for (int l=0;l<LengthFiles ;l++)
{
itoa(l, StrNumber, 1);
strcat(str,FilePrefix);strcat(str,StrNumber);strcat(str,".BMP");
DDBImage[l]= SDL_DisplayFormat(SDL_LoadBMP(str));
}
如您所见,我不知道如何用 C++ 编写代码,我试图通过在线代码片段来完成这项工作。这就是它应该如何在 C/C++ 中工作,即动态创建变量。
我如何最好地接近它?