*= Di CComCurrency::operator
Questo operatore viene utilizzato per eseguire la moltiplicazione su un oggetto CComCurrency e per assegnare il risultato.
const CComCurrency & operator *=(
long nOperand
);
const CComCurrency & operator *=(
const CComCurrency & cur
);
nOperand
Moltiplicatore.cur
L'oggetto CComCurrency utilizzata in un moltiplicatore.
Restituisce l'oggetto aggiornato CComCurrency.In caso di errore, ad esempio un overflow, questo operatore chiama AtlThrow con un HRESULT che descrive l'errore.
CComCurrency cur(10, 5000);
cur *= 2;
ATLASSERT(cur == CComCurrency(21, 0));
Header: atlcur.h