char*,string和CString之间的转换
一、 将CString类转换成char*(LPSTR)类型方法一,使用强制转换。例如:
CString theString( “This is a test” );
LPTSTR lpsz =(LPTSTR)(LPCTSTR)theString;
方法二,使用strcpy。例如:
CString theString( “This is a test” );
LPTSTR lpsz
转载
2015-12-20 19:02:28 ·
371 阅读 ·
0 评论