Condividi tramite


CStringT::operator! =

Determina se due stringhe non logicamente sono uguali.

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();

Parametri

  • ch1
    Un ANSI o un carattere unicode da concatenare con una stringa.

  • ch2
    Un ANSI o un carattere unicode da concatenare con una stringa.

  • str1
    CStringT per il confronto.

  • str2
    CStringT per il confronto.

  • psz1
    Un puntatore a una stringa con terminazione null per il confronto.

  • psz2
    Un puntatore a una stringa con terminazione null per il confronto.

Note

Verifica se una stringa o un carattere a sinistra non è uguale a una stringa o un carattere a destra.

Esempio

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

ASSERT(s1 != _T("dog"));
ASSERT(s2 != _T('t'));
ASSERT(s1 != s2);   

Requisiti

Header: cstringt.h

Vedere anche

Riferimenti

Classe di CStringT