_ttoi()与_itot_s()

这两个定义在tchar.h中,可以满足不同编码要求。

CWnd *pWnd = (CWnd*)GetDlgItem(IDC_EDIT4);
 CString strValue;
 pWnd->GetWindowText(strValue);
 strValue.Replace(_T("sec"),_T(""));
  int iValue = _ttoi(strValue);//将CString转换成Int

iValue -= 5*pNMUpDown->iDelta;

TCHAR buffer[7];
       _itot_s(iValue,buffer,3,10);//将int转换成char*
        strValue.Format(_T("%s"),buffer);//将char*转换成CString
       strValue =strValue + _T(" sec");//CString实现字符串相加

你可能感兴趣的:(C++,buffer)