| title | _bstr_t Relational Operators | Microsoft Docs | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ms.custom | |||||||||||||||||||
| ms.date | 11/04/2016 | ||||||||||||||||||
| ms.reviewer | |||||||||||||||||||
| ms.suite | |||||||||||||||||||
| ms.technology |
|
||||||||||||||||||
| ms.tgt_pltfrm | |||||||||||||||||||
| ms.topic | language-reference | ||||||||||||||||||
| f1_keywords |
|
||||||||||||||||||
| dev_langs |
|
||||||||||||||||||
| helpviewer_keywords |
|
||||||||||||||||||
| ms.assetid | e153da72-37c3-4d8a-b8eb-730d65da64dd | ||||||||||||||||||
| caps.latest.revision | 6 | ||||||||||||||||||
| author | mikeblome | ||||||||||||||||||
| ms.author | mblome | ||||||||||||||||||
| manager | ghogen | ||||||||||||||||||
| translation.priority.ht |
|
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