填空题 表达式x. operator++( ) 还可写成

  • 1、
【正确答案】 1、++x    
【答案解析】[解析] C++语言中用成员函数重载++x为x. operator++( ) ,用友元函数重载++x为:operator++(x) 。