CStringT::operator ==

确定两个字符串是否在逻辑上是相等。

friend bool operator==(
   const CStringT& str1,
   const CStringT& str2
) throw();
friend bool operator==(
   const CStringT& str1
   PCXSTR psz2
) throw();
friend bool operator==(
   const CStringT& str1,
   PCYSTR psz2
) throw();
friend bool operator==(
   const CStringT& str1,
   XCHAR ch2
) throw();
friend bool operator==(
   PCXSTR psz1
   const CStringT& str2
) throw();
friend bool operator==(
   PCYSTR psz1
   const CStringT& str2,
) throw();
friend bool operator==(
   XCHAR ch1
   const CStringT& str2,
) throw();

参数

  • ch1
    一个ANSI或Unicode字符进行比较的。

  • ch2
    一个ANSI或Unicode字符进行比较的。

  • str1
    比较的 CStringT

  • str2
    比较的 CStringT

  • psz1
    对一个Null终止的字符串的指针比较的。

  • psz2
    对一个Null终止的字符串的指针比较的。

备注

测试字符串或字符在左侧是否与一个字符串或字符相等的右侧,并相应地返回TRUE或FALSE。

示例

// typedef CStringT< TCHAR, StrTraitATL< TCHAR > > CAtlString;
CAtlString s1(_T("dog")), s2(_T("f")), s3(_T("dog"));

ASSERT(s1 == _T("dog"));
ASSERT(s2 == _T('f'));
ASSERT(s1 == s3);   

要求

Header: cstringt.h

请参见

参考

CStringT选件类