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.
我有一个这样的字符数组:
char aData[100];
如何仅将 aData 的一部分从 index from复制到 index to in a wxString ?
是否可以使用 wxString 作为目标,将 char 数组作为源,类似于 C 中的 memcpy ?
您应该能够使用需要读取字节数的构造函数来执行此操作。
wxString w(aData+from, to-from);
对于已经存在的w,你可以说
w
w.assign(aData+from, to-from);
或者您可以使用迭代器版本:
w.assign(aData+from, aData+to);