今天遇到一个CString.format传入字符数组乱码问题 ,查了半天 在一个博客找到原因 https://blog.csdn.net/girl_programmer_/article/details/56842708
利用函数CA2CT转化字符串数组,数组里面的元素是窄字符集,CString需要传入宽字符集
CString strGroup = CA2CT(pGroupInfo->m_szGroupName);//pGroupInfo->m_szGroupName为一个char类型的字符串数组
CString str ;
str.Format(_T("找到群%d,群名字%s,群成员数量%d,群主ID%d\n是和否加入群?"),GroupNum,strGroup,pGroupInfo->m_nGroupMemberCount,pGroupInfo->m_CretorID);