gpt4 book ai didi

string - 如何在 C++ 中调用字符串资源

转载 作者:行者123 更新时间:2023-12-04 23:30:08 26 4
gpt4 key购买 nike

在资源.h

#define String1 333

在资源.rc
#include <windows.h>
#include "resource.h"

STRINGTABLE
{
STRING1 "hie people"
}

在 main.cpp
#include<iostream.h>
#include<resource.h>
#include<windows.h>
using namespace std;
int main{
cout<<here i want to output string value from resource how to call the string;
}

还有一个我在代码块中编译的问题。它说resource.h不在我错的地方

最佳答案

我假设它是 Visual C++ 并且您正在使用 MFC。就像调用一样简单:

::LoadString(...)

如果您使用的是 MFC,那么
CString str;
str.LoadString(STRING1)

LoadString from MSDN

An Example here of how to use LoadString

关于string - 如何在 C++ 中调用字符串资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6276284/

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