由於需求重新做了個mfc介面,相互之間字串轉化的東西,記錄一下:
cstring轉lpcwstr:
lpcwstr wstr;
cstring str(_t(「12354」));
wstr=str;
如此cstring便轉化為了lpcwstr型別
int轉lpcwstr:
wchar_t wstr[10];
int i = 30;
_itow_s( i, wstr, 10, 10);
wstr便是int轉化後的lpcwstr型別
int轉cstring型別:
cstring str;
int i;
str.fromat(_t("%d"),i);
str便是i轉化為的cstring型別
string int的相互轉換
1.int 轉 string 標頭檔案 include int x stringstream sd sd x string str sd.str 標頭檔案 include strstream ss int sum 0 string c ss sum ss c 2.string 轉 int int t...
int string char的相互轉換
1 string轉換成int include include includeusing namespace std int main method 2 res atoi s.c str method 3 stringstream 很強大 stringstream ss ss s ss res met...
C char string 的相互轉換
1.char string 直接賦值 2.string char 3種方法 1 呼叫 string 的 data 函式 注 data除了返回字串內容外,不附加結束符 0 注 const char 與 char 之間用const cast轉換符 include includeusing namespa...