单项选择题
A、 语句p=&my;是把对象my赋值给指针变量P B、 语句MyClass*p, my;会调用两次类MyClass的构造函数 C、 对语N*P. SetVariable(5)的调用是正确的 D、 语句p->SetVariable(5)与语句my.SetVariable(5)等价
A、 x.operator++(0).operator*(y) B、 operator*(x.operator++(0),y) C、 y.operator*(operator++(x,0)) D、 operator*(operator++(x,0),y)
A、 枚举常量NAME的值为1 B、 枚举常量NUMBER的值为1 C、 枚举常量MINUS的值为6 D、 枚举常量PRINT的值为10