CComCurrency::operator /
Utilizan este operador para realizar la división en un objeto de CComCurrency .
Sintaxis
CComCurrency operator /(
long nOperand
) const;
Parámetros
- nOperand
Divisor.
Valor devuelto
Devuelve un objeto de CComCurrency que representa el resultado de la división.Si el divisor es 0, un error validar aparecerá.
CComCurrency cur1(10, 5000), cur2;
cur2 = cur1 / 10;
ATLASSERT(cur2 == CComCurrency(1, 500));
Requisitos
encabezado: atlcur.h
Vea también
CComCurrency Class
CComCurrency::operator /=
CComCurrency::operator +
CComCurrency::operator -
CComCurrency::operator *