Real 是实数的意思。在复数里,real 表示取实部函数。应当用小写 include <complex> include <iostream> int main( ){ using namespace std;complex <double> c1 ( 4.0 , 3.0 ); // c1 是复数 cout << "The complex number c1 = " << c1 << endl;double dr1 = real ( c1 ); ...
real part?可能是real_part吧?是不是在定义变量时出现的。real嘛,复数的实部吧。
是按位或 |,0|1=1,1|1=1,1|0=1,0|0=0,还有就是||这是或运算,计算值只有1、0.而|就不一样,34|34=34.而34||34=1. 注意自己总结一下吧!