Partager via


CHString::operator+

[La classe CHString fait partie de l’infrastructure du fournisseur WMI, qui est maintenant considérée dans l’état final, et aucun développement, amélioration ou mise à jour supplémentaire ne sera disponible pour les problèmes non liés à la sécurité affectant ces bibliothèques. Les API MI doivent être utilisées pour tout nouveau développement.]

L’opérateur de concaténation + joint deux chaînes et retourne un objet CHString.

friend CHString operator +(
  const CHString& str1,
  const CHString& str2 )
throw( CHeap_Exception );

friend CHString operator +(
  const CHString& str,
  WCHAR ch )
throw( CHeap_Exception );

friend CHString operator +(
  WCHAR ch,
  const CHString& str )
throw( CHeap_Exception );

friend CHString operator +(
  const CHString& str,
  LPCWSTR lpsz )
throw( CHeap_Exception );

friend CHString operator +(
  LPCWSTR lpsz,
  const CHString& str )
throw( CHeap_Exception );

friend CHString operator +(
  const CHString& str,
  char ch )
throw( CHeap_Exception );

friend CHString operator +(
  char ch,
  const CHString& str )
throw( CHeap_Exception );

Paramètres

str, str1, str2

Les chaînes CHString sont concaténées.

ch

Un caractère qui concatène en une chaîne ou une chaîne qui concatène en un caractère.

lpsz

Pointeur vers une chaîne de caractères terminée par NULL.

Valeurs de retour

Cet opérateur de concaténation retourne un objet CHString qui est le résultat temporaire de la concaténation. Cette valeur de retour permet de combiner plusieurs concaténations dans la même expression.

Notes

L’une des deux chaînes d’arguments doit être un objet CHString. L’autre peut être un pointeur de caractère ou un caractère. N’oubliez pas que des exceptions de mémoire peuvent se produire chaque fois que vous utilisez l’opérateur de concaténation, car un nouveau stockage peut être alloué pour stocker des données temporaires.

Exemples

L’exemple de code suivant montre l’utilisation de CHString::operator + :

CHString s1( L"abc" );
CHString s2( L"def" );
assert( (s1 + s2 ) == L"abcdef" );

CHString s3;
s3 = CHString( L"abc" ) + "def" ; // Correct
s3 = "abc" + "def"; // Wrong. The first argument must be a CHString.

Spécifications

Condition requise Valeur
Client minimal pris en charge
Windows Vista
Serveur minimal pris en charge
Windows Server 2008
En-tête
ChString.h (inclure FwCommon.h)
Bibliothèque
FrameDyn.lib
DLL
FrameDynOS.dll;
FrameDyn.dll

Voir aussi

CHString