为啥我不能在 MFC 中比较 CString

Posted

技术标签:

【中文标题】为啥我不能在 MFC 中比较 CString【英文标题】:Why i can't compare CString in MFC为什么我不能在 MFC 中比较 CString 【发布时间】:2014-12-03 13:38:36 【问题描述】:

这一行。

UpdateData(true);
if( m_OldPassword.Compare(d.pass) && m_NewPassword.Compare(m_ConfirmPassword) )

m_OldPassword、m_NewPassword、m_ConfirmPassword

是我从 EditControl 添加的变量

m_OldPassword.Compare(d.pass) Result =true(已测试)

m_NewPassword.Compare(m_ConfirmPassword) 结果 = 假。

IMPLEMENT_DYNAMIC(ChangePassword, CDialog)

ChangePassword::ChangePassword(CWnd* pParent /*=NULL*/)
    : CDialog(ChangePassword::IDD, pParent)
    , m_OldPassword(_T(""))
    , m_NewPassword(_T(""))
    , m_ConfirmPassword(_T(""))


我不知道发生了什么。我确定我的输入(新的,确认)是正确的。

【问题讨论】:

我们需要查看该行之前的代码。具体来说,如何分配所有变量 CString::Compare 返回0 相等 仅在该行之前更新数据。查看我的更新 很高兴您提到了 UpdateData,这是我的第一个想法。 @BeyelerStudios 是对的,返回值是 not 布尔值,你不能这样对待它。请参阅文档:msdn.microsoft.com/en-us/library/aa314313%28v=vs.60%29.aspx 阅读文档了吗?问题应该很明显,我不想为你写代码。 【参考方案1】:

你需要做的

if( m_OldPassword.Compare(d.pass)==0 && m_NewPassword.Compare(m_ConfirmPassword)==0 )

如果您要比较两个 Cstring,请说 abcxyz 如果 abc 等于字符串 xyz 它将返回 0 如果 abc 大于字符串 xyz 它将返回 1 如果 abc 小于字符串 xyz 它将返回 -1

【讨论】:

以上是关于为啥我不能在 MFC 中比较 CString的主要内容,如果未能解决你的问题,请参考以下文章

为啥我编译的MFC应用程序在其他电脑上不能运行?

DevExpress控件在VS2008上如何使用?为啥我建立了MFC的对话框程序,那些DevExpress控件不能使用?是灰色

为啥VS2008下用MFC使用COMBOX时单击不能显示所有项

为啥MFC只能用位图不能用png图?

MFC 中CBUTTON DrawItem函数为啥为空?

为啥我无法在 CListBox 中获取所选项目? MFC