On this page
std::literals::complex_literals::operator""i, operator""if, operator""il
Defined in header <complex> |
||
|---|---|---|
|
(1) | (since C++14) |
|
(2) | (since C++14) |
|
(3) | (since C++14) |
Forms a std::complex literal representing an imaginary number.
Parameters
| arg | - | the value of the imaginary number |
Return value
The std::complex literal with the real part zero and imaginary part arg.
Notes
These operators are declared in the namespace std::literals::complex_literals, where both literals and complex_literals are inline namespaces. Access to these operators can be gained with either:
using namespace std::literals,using namespace std::complex_literals, orusing namespace std::literals::complex_literals.
Even though if is a keyword in C++, it is a ud-suffix of the literal operator of the form operator ""if and in the literal expressions such as 1if or 1.0if because it is not separated by whitespace and is not a standalone token.
| Feature-test macro | Value | Std | Feature |
|---|---|---|---|
__cpp_lib_complex_udls |
201309L | (C++14) | User-Defined Literals for std::complex |
Possible implementation
| operator""i |
|---|
|
| operator""if |
|
| operator""il |
|
Example
#include <complex>
#include <iostream>
int main()
{
using namespace std::complex_literals;
std::complex<double> c = 1.0 + 1i;
std::cout << "abs" << c << " = " << std::abs(c) << '\n';
std::complex<float> z = 3.0f + 4.0if;
std::cout << "abs" << z << " = " << std::abs(z) << '\n';
}
Output:
abs(1,1) = 1.41421
abs(3,4) = 5
See also
| constructs a complex number (public member function) |
|
| assigns the contents (public member function) |
|
C documentation for I |
|
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/numeric/complex/operator%22%22i