CComCurrency::operator /=
Dieser Operator wird verwendet, um Division auf einem CComCurrency-Objekt auszuführen und ihr das Ergebnis zuzuweisen.
Syntax
const CComCurrency & operator /=(
long nOperand
);
Parameter
- nOperand
Der Divisor.
Rückgabewert
Gibt das aktualisierte CComCurrency-Objekt zurück.Wenn der Divisor 0 ist, tritt ein Assertionsfehler auf.
CComCurrency cur(10, 5000);
cur /= 10;
ATLASSERT(cur == CComCurrency(1, 500));
Anforderungen
Header: atlcur.h
Siehe auch
CComCurrency Class
CComCurrency::operator /
CComCurrency::operator +
CComCurrency::operator -
CComCurrency::operator *