Partilhar via


CComCurrency::operador =

Este operador atribui o CComCurrency objeto para um novo valor.

const CComCurrency & operator =(
   const CComCurrency & curSrc 
) throw( );
const CComCurrency & operator =(
   CURRENCY cySrc 
) throw( );
const CComCurrency & operator =(
   FLOAT fSrc 
);
const CComCurrency & operator =(
   SHORT sSrc 
);
const CComCurrency & operator =(
   LONG lSrc 
);
const CComCurrency & operator =(
   BYTE bSrc 
);
const CComCurrency & operator =(
   USHORT usSrc 
);
const CComCurrency & operator =(
   DOUBLE dSrc 
);
const CComCurrency & operator =(
   CHAR cSrc 
);
const CComCurrency & operator =(
   ULONG ulSrc 
);
const CComCurrency & operator =(
   DECIMAL dSrc 
);

Parâmetros

  • curSrc
    A CComCurrency objeto.

  • cySrc
    Uma variável do tipo MOEDA.

  • sSrc, fSrc, lSrc, bSrc, usSrc, dSrc, cSrc, ulSrc, dSrc
    O valor numérico para atribuir à CComCurrency objeto.

Valor de retorno

Retorna o atualizadoCComCurrency objeto. No caso de um erro, sistema autônomo um estouro de capacidade, esse operador chama AtlThrow com um HRESULT descrevendo o erro.

Exemplo

CComCurrency cur1, cur2(10, 5000);
CURRENCY cy;

// Copying one object to another 
cur1 = cur2;

// Using the CURRENCY data type
cy.int64 = 105000;
cur1 = cy;

ATLASSERT(cur1 == cur2);

Requisitos

Cabeçalho: atlcur.h

Consulte também

Referência

Classe CComCurrency

Outros recursos

CComCurrency membros