单项选择题
A、 min=(x>y)x:y B、 min=(x<y)x:y C、 min=(x<y) x:y D、 min=(x<y)x,y
A、 operator/(x.operato--(),y); B、 operator/(operator--(x),y); C、 x.operator--().operator/(y); D、 y.operator/(operator--(x));
A、TestClass (TestClass &other) number=other.number; B、TestClass (TestClass other)number=other.number; C、 TestClass (TestClass &other)number; D、TestClass (&other) number=other.number;