_bstr_t-Operatoren (relational)
Microsoft-spezifisch
Vergleicht zwei _bstr_t-Objekte.
bool operator!( ) const throw( );
bool operator==(
const _bstr_t& str
) const throw( );
bool operator!=(
const _bstr_t& str
) const throw( );
bool operator<(
const _bstr_t& str
) const throw( );
bool operator>(
const _bstr_t& str
) const throw( );
bool operator<=(
const _bstr_t& str
) const throw( );
bool operator>=(
const _bstr_t& str
) const throw( );
Hinweise
Diese Operatoren vergleichen zwei _bstr_t-Objekte auf lexikografischer Ebene. Die Operatoren geben true an, wenn die Vergleiche stimmen; andernfalls geben sie false zurück.
END Microsoft-spezifisch