◐ Shell
clean mode source ↗

std::complex::complex – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

complex( const T& re = T(), const T& im = T() );

(1)

complex( const complex& rhs );

(2)

Konstruiert den std::complex Objekt .

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.

1)

Konstruiert der komplexen Zahl von realen und imaginären Teile .

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.

2)

Kopieren Konstruktor. Erzeugt das Objekt mit der Kopie der Inhalte des 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.

Parameter

re -

der Realteil

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 -

den imaginären Teil

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 -

ein weiterer Komplex, der als Quelle verwenden

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.

Siehe auch

ordnet die Inhalte

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.


(öffentliche Elementfunktion) [edit]