三相电动势或电流的幅值出现的次序为相序,相序为A-B-C,通常称为();相序为C-B-A,通常称为();
参考答案:正序或顺序;负序或逆序
若有以下程序: #include <iostream> using namespaces std; class A public: A() A(int i) x1=i; void dispa() cout<<’x1="<<x1<<","; private: int x1; ; class B: public A public: B() B(int i):A(i+10) x2=i; void dispb() dispa();cout<<"x2="<<x2<<end1; private: int x2; ; int main() B b(2); b.dispb(): return 0; 程序运行后的输出结果是
A.x1=10,x2=2
B.x1=12,x2=10
C.x1=12,x2=2
D.x1:2,x2=2
在表达式x-y中,“-”是作为非成员函数重载的运算符。若使用显式的函数调用代替直接使用运算符“-”,这个表达式还可表示为______ 。
A.opemtor-(
B.opemtor-(y,
C.operator-(
D.operator-(x,