_bstr_t と関係演算子

Microsoft 固有の仕様 →

_bstr_t の 2 種類のオブジェクトを比較します。

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( );

解説

これらの演算子は _bstr_t の 2 個のオブジェクトを辞書式に比較します。演算子は true を比較 False を保持します。それ以外の場合はを返します。

終了 Microsoft 固有の仕様→

参照

関連項目

_bstr_t クラス