std::complex::complex
Da cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
complex( const T& re = T(), const T& im = T() ); | (1) | |
complex( const complex& rhs ); | (2) | |
Constrói o objeto std::complex.
1)Original:
Constructs the std::complex object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Constrói o número complexo de partes real e imaginária.
2)Original:
Constructs the complex number from real and imaginary parts.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Copie construtor. Constrói o objeto com a cópia do conteúdo do
other
.Original:
Copy constructor. Constructs the object with the copy of the contents of
other
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Parâmetros
re | - | a parte real Original: the real part The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
im | - | a parte imaginária Original: the imaginary part The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
other | - | outro complexo para utilizar como fonte Original: another complex to use as source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Veja também
atribui o conteúdo Original: assigns the contents The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função pública membro) |