早教吧 育儿知识 作业答案 考试题库 百科 知识分享

c++选择题,为什么不选能B。引用啊!如果定义了一个类myclass,则为myclass类对象以成员函数形式重载后++运算符的声明应该为。A.myclassoperator++();B.myclass&operator++();C.myclassoperato

题目详情
c++选择题,为什么不选能B。引用啊!
如果定义了一个类myclass,则为myclass类对象以成员函数形式重载后++运算符的声明应该为_______。
A. myclass operator++();
B. myclass& operator++();
C. myclass operator++( int );
D. myclass& operator++( int );
解答: C
▼优质解答
答案和解析
B. myclass& operator++(); //这个的前++
C. myclass operator++( int ); //这个的后++
这是语法规定,没什么好解释的啊!