码迷,mamicode.com
首页 > 其他好文 > 详细

vs lesson7

时间:2016-03-04 10:23:56      阅读:114      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!