CComCurrency::operator +=
Questo operatore viene utilizzato per eseguire l'operazione aggiungi su un oggetto CComCurrency e assegnare il risultato all'oggetto corrente.
const CComCurrency & operator +=(
const CComCurrency & cur
);
Parametri
- cur
Oggetto CComCurrency.
Valore restituito
Restituisce l'oggetto aggiornato CComCurrency. In caso di errore, ad esempio un overflow, questo operatore chiama AtlThrow con un HRESULT che descrive l'errore.
Esempio
CComCurrency cur(10, 2500);
cur += CComCurrency(4, 2500);
ATLASSERT(cur == CComCurrency(14, 5000));
Requisiti
Header: atlcur.h