次の方法で共有


CComCurrency::operator CURRENCY

これらの演算子は CURRENCY のデータ型への CComCurrency のオブジェクトをキャストに使用されます。

operator CURRENCY&( ) throw( ); 
operator const CURRENCY&( ) const throw( );

戻り値

CURRENCY のオブジェクトへの参照を返します。

使用例

CComCurrency cur(10, 5000);
CURRENCY cy = static_cast<CURRENCY>(cur); // Note that explicit cast is not necessary
ATLASSERT(cy.int64 == 105000);

必要条件

Header: atlcur.h

参照

関連項目

CComCurrency クラス