Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在修改一些wchar_t myArray[MAX_PATH]在头文件中有 a 的 C++ 代码。
wchar_t myArray[MAX_PATH]
我的修改意味着直到运行时我才能知道这个数组的长度。我怎样才能存储一个动态长度的数组呢?也许我只是wchar_t*在头文件中保留一个,而另一个int保留它的长度?
wchar_t*
int
改为使用std::wstring。它是一个动态字符串,包含wchar_t.
std::wstring
wchar_t