| title | _bstr_t Relational Operators | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ms.date | 11/04/2016 | ||||||||||||||||||
| f1_keywords |
|
||||||||||||||||||
| helpviewer_keywords |
|
||||||||||||||||||
| ms.assetid | e153da72-37c3-4d8a-b8eb-730d65da64dd |
Microsoft Specific
Compares two _bstr_t objects.
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( );
These operators compare two _bstr_t objects lexicographically. The operators return TRUE if the comparisons hold, otherwise return FALSE.
END Microsoft Specific