①CString str((char*)lParam);   --构造函数

②CString str;
str=(char*)lParam;  --运算符重载

③使用CString的格式化函数:
CString str;
str.format("%s", (char*)iParam);