[ Web Proxy ]
URL:
Viewing: http://pl.cppreference.com/cpp/string/basic_string/empty [Back]  [Original]

empty cppreference.com
cppreference.com
Przestrzenie nazw
Warianty

empty

Z cppreference.com

Skadnia:

    #include <string>
    bool empty() const;

Metoda **empty()** zwraca TRUE, jeli string nie zawiera znakw, FALSE w przeciwnym wypadku.


Na przykad:

    string s1;
    string s2("");
    string s3("To jest string");
    cout.setf(ios::boolalpha);
    cout << s1.empty() << endl;
    cout << s2.empty() << endl;
    cout << s3.empty() << endl;

Kod wywietli:

    true
    true
    false

Powizane tematy: size


Web Proxy Viewer  |  New URL  |  Original Page