赞题库-背景图
单项选择题

设c1和c2是类MyClass的对象,若将后缀运算符"++"作为类MyClass的友元函数重载,运算符"*"作为类MyClass的成员函数重载,则表达式c2*c1++等价于

A.c1.operaor++(0).operator*(c2)
B.c2.operator*(c1.operator++(0))
C.c2.operator*(operator++(c1,0))
D.operator*(operator++(c1,0),c2)