https://en.wikipedia.org/wiki/C_data_typesIn practice, char is usually eight bits in size and short is usually 16 bits in size (as are their unsigned counterparts).char多为8位,As char's size is always the minimum supported data type, no other data types…
1.char*转换成CString 若将char*转换成CString,除了直接赋值外,还可使用CString::format进行.例如: char chArray[] = "This is a test"; char * p = "This is a test"; 或 LPSTR p = "This is a test"; 或在已定义Unicode应的用程序中 TCHAR * p = _T("This is a test")…