Abilitare JavaScript per vedere questo sito.

Interroga lo stato di stringa vuota.

Sintassi

bool is_empty() const

Risultato

Rende true se stringa vuota, false altrimenti.

Note

Stringa vuota corrisponde a dimensione stringa pari a zero.

Esempio di utilizzo:

string source1("Hello world!");

string source2;

 

bool f1 = source1.is_empty(); /* Rende valore false */

bool f2 = source2.is_empty(); /*! Rende valore true */

 

if (source2.size() == 0) /*! Rende valore true */

{   

  ...   

}

 

  

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