Abilitare JavaScript per vedere questo sito.

Operatore di confronto (negato) stringa.

Sintassi

bool operator!=(const string &in source) const

source

Stringa sorgente

Risultato

Rende true se le stringa è diversa da quella sorgente , false altrimenti

Note

La comparazione è case-sensitive

Esempio di utilizzo:

string source1("stringa-1");

string source2 = source1;

 

if (str1 != "stringa-1")

{

  /* Elaborazione per stringa differente */

}

else

{

  /* Elaborazione per stringa uguale */

}

 

  

Keyboard Navigation

F7 for caret browsing
Hold ALT and press letter

This Info: ALT+q
Page Header: ALT+h
Topic Header: ALT+t
Topic Body: ALT+b
Contents: ALT+c
Search: ALT+s
Exit Menu/Up: ESC