C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- 伪随机数生成
- 浮点环境
- std::complex
- std::complex<T>::complex
- std::complex<T>::operator=
- std::complex<T>::real
- std::literals::complex_literals::operator""i, operator""if, operator""il
- std::complex<T>::imag
- std::complex<T>::operator+=,-=,*=,/=
- std::complex<T>::operator+(unary), operator-(unary)
- operator+,-,*,/ (std::complex)
- operator==,!=(std::complex)
- operator<<,>>(std::complex)
- std::real(std::complex)
- std::imag(std::complex)
- std::abs(std::complex)
- std::arg(std::complex)
- std::norm(std::complex)
- std::conj(std::complex)
- std::proj(std::complex)
- std::polar(std::complex)
- std::exp(std::complex)
- std::log(std::complex)
- std::log10(std::complex)
- std::pow(std::complex)
- std::sqrt(std::complex)
- std::sin(std::complex)
- std::cos(std::complex)
- std::tan(std::complex)
- std::asin(std::complex)
- std::acos(std::complex)
- std::atan(std::complex)
- std::sinh(std::complex)
- std::cosh(std::complex)
- std::tanh(std::complex)
- std::asinh(std::complex)
- std::acosh(std::complex)
- std::atanh(std::complex)
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >数值库 >std::complex > operator+,-,*,/ (std::complex)
operator+,-,*,/ (std::complex)
为复数运算和混合复数/标量运算实现二元运算符。将标量当做拥有等于参数的实部和设为零的虚部的复数。
1-3) 返回其参数的和
4-6) 返回从
lhs
减去 rhs
的结果7-9) 将参数相乘
10-12)
lhs
除以 rhs
参数
lhs, rhs | - | 参数:两个复数,或一个复数与一个拥有匹配类型的标量( float 、 double 、 long double ) |
返回值
1-3) std::complex<T>(lhs) += rhs
4-6) std::complex<T>(lhs) -= rhs
7-9) std::complex<T>(lhs) *= rhs
10-12) std::complex<T>(lhs) /= rhs
注意
模板实参推导不考虑隐式转换,故这些运算符不能用于整数/复数混合运算。所有情况下,标量必须与复数的底层类型拥有相同类型。
GCC 标志 "-fcx-limited-range" (包含于 "-ffast-math" )更改复数乘/除的行为,移除浮点极端情况的检查。这会影响向量化。
示例
运行此代码
#include <iostream> #include <complex> int main() { std::complex<double> c2(2, 0); std::complex<double> ci(0, 1); std::cout << ci << " + " << c2 << " = " << ci+c2 << '\n' << ci << " * " << ci << " = " << ci*ci << '\n' << ci << " + " << c2 << " / " << ci << " = " << ci+c2/ci << '\n' << 1 << " / " << ci << " = " << 1./ci << '\n'; // std::cout << 1.f/ci; // 编译错误 // std::cout << 1/ci; // 编译错误 }
输出:
(0,1) + (2,0) = (2,1) (0,1) * (0,1) = (-1,0) (0,1) + (2,0) / (0,1) = (0,-1) 1 / (0,1) = (0,-1)
参阅
两个复数,或一个复数与一个标量的复合赋值 (公开成员函数) | |
对复数运用一元运算符 (函数模板) |