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 の配列があります。
char aData[100];
aData の一部のみを indexからindexに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);