Condividi tramite


CComCurrency::operator - =

Questo operatore viene utilizzato per eseguire la sottrazione su un oggetto CComCurrency e per assegnare il risultato.

const CComCurrency & operator -=(
   const CComCurrency & cur 
);

Parametri

  • cur
    Un 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, 5000);
cur -= CComCurrency(4, 5000);
ATLASSERT(cur == CComCurrency(6, 0));

Requisiti

Header: atlcur.h

Vedere anche

Riferimenti

Classe di CComCurrency

CComCurrency::operator -

CComCurrency::operator +

CComCurrency::operator *

CComCurrency::operator/