1樓:衝浪**優化
cstring 型轉化成 int 型。
把 cstring 型別的資料轉化成整數型別最簡單的方法就是使用標準的字串函式。
將字元轉換為整數,可以使用atoi、_atoi64或atol。
2樓:
不要用 atoi.那是ansi版本的.
使用 _tstoi 是相容ansi版本和unicode版本的.
使用方法一樣,如下:
int ngetint = _tstoi( lpctstr(a) );
vs2005 預設是 unicode 編碼的,而 atoi 是ansi的當然會編譯出錯了.
3樓:匿名使用者
那你就先用strcpy把cstring考到一個char*裡去
4樓:
cstring轉化為int是atoi
5樓:匿名使用者
你這個工程選項裡開啟了unicode吧?
試試用 _wtoi
mfc中怎樣將字元陣列的內容轉換為cstring型
char name 100 中華人名共和國 這是有效的字元陣列初始化 strname ca2ct name 這樣就可以了char name 是窄字元的字串 cstring 有兩 內種可能,如容果有unicode巨集就是寬字元cstringw,如果沒有這個巨集就是窄字元cstringa。用ca2ct可...
c中怎樣將double型強制轉換為int型
double a 4.6 一,int b int a 二,int c convert.toint32 a double temp1 int temp2 temp1 3.0 temp2 system.convert temp1 int i double b 0 i int b int a double...
python中,怎麼把字串轉換為日期格式
1 新建來python檔案,testtime.py 2 編碼 將字串轉換為日期格式 import time str 2019 12 23 22 18 30 t time.strptime str,y m d h m s print t print type t 3 視窗右擊選擇 在終端中執行pyth...