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) ;