首页 > 其他 > 详细

vs lesson7

时间:2016-03-04 10:21:36      阅读:185      评论:0      收藏:0      [点我收藏+]

cstring和int转换

CString m_str1,m_str2,m_str3;
    char ch1[10],ch2[10],ch3[10];
    int num1, num2, num3;
    GetDlgItem(IDC_EDIT1)->GetWindowTextW(m_str1);
    GetDlgItem(IDC_EDIT2)->GetWindowTextW(m_str2);
    
    num1 = _ttoi((LPCTSTR)m_str1);
    num2 = _ttoi((LPCTSTR)m_str2);
    num3 = num1 + num2;
    m_str3.Format(_T("%d"), num3);
    //_tstoi(num3, (TCHAR*)m_str3.GetBuffer(10), 10);
    //m_str3.ReleaseBuffer();
    
    GetDlgItem(IDC_EDIT3)->SetWindowTextW(m_str3);

 

vs lesson7

原文:http://www.cnblogs.com/Mungbohne/p/5241004.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!