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.
文字列を cptrlist に追加するには? ビジュアルスタジオ6.0を使用しています。
ありがとう、
これを行うには多くの方法があります。すべては、正確に何をしたいかによって異なります。
例えば :
CPtrList MyList ; ... CPtrList MyList ; MyList.AddTail("Test") ; CString str ; str = .... ; MyList.AddTail(&str) ;