注册 登录
编程论坛 数据结构与算法

下面几行代码看不懂求注释!!!

suqhang 发布于 2010-10-16 19:00, 616 次点击
    CString str;
    if(pMsg->message==WM_CHAR && pMsg->hwnd==this->mc_source.m_hWnd)
    {
        char num=(TCHAR)pMsg->wParam;
        if(!(CheckNummer(num) || num=='.' || num==VK_BACK))
            return true;
        if(num=='.')
        {
            mc_source.GetWindowText(str);            //得到当前文本
            if(str.Find(".",0)>=0)                    //测试串中是否已有"."字符
                return true;
1 回复
#2
fish1244232010-10-29 14:28
//定义一个字符串  
CString str;
//pMsg 应该是一个Wparam 消息指针,如果pMsg返回的是WM_CHAR 定义的内容,WM_CHAR是一个Window字符消息,如果pMsg句柄=this->mc_source.m_hWnd
    if(pMsg->message==WM_CHAR && pMsg->hwnd==this->mc_source.m_hWnd)
    {

        char num=(TCHAR)pMsg->wParam;
//你自己的自定义函数,让别人给你解释,是不是有点what a fucking day!
        if(!(CheckNummer(num) || num=='.' || num==VK_BACK))
            return true;
        if(num=='.')
        {
            mc_source.GetWindowText(str);            //得到当前文本
            if(str.Find(".",0)>=0)                    //测试串中是否已有"."字符
                return true;
1