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