代碼如下:
double CGPSViewerDlg::parseDouble(CString str){
//傳入的str="3017.90736"
int pos;
if(str.GetLength()==0 || (pos=str.Find(_T(".")))<0 ) return 0;
str.Delete(pos,1);
str.Insert(pos-2,_T('.'));
//出錯的這裡,str從debug中斷下來,看到值為-{"30.1790736"},執行完後ret=30.000000000000
double ret = _ttol(str);
DEBUGMSG(1, (L"%f", ret));
return ret;
}
期待高手解答
問題已解決,wince5.0中沒有提供CString轉浮點數的api,只好去曲線救國了:
double CGPSViewerDlg::parseDouble(CString str){
int pos;
if(str.GetLength()==0 || (pos=str.Find(_T(".")))<0 ) return 0;
str.Delete(pos,1);
str.Insert(pos-2,_T('.'));
double ret;
TCHAR* strTmp;//臨時
ret = wcstod(str,&strTmp);
DEBUGMSG(1, (L" %lf!\r\n", ret));
return ret;
}