base operand of '->' has non-pointer type 'const Comple

base operand of '->' has non-pointer type 'const Comple

->操作符前面的操作数类型不是指针类型

错误原因 

函数(&对象)

{
 对象名.成员     //正确方式

 对象名->成员     //编译报错  base operand of '->' has  non-pointer type .......

}

引用传递的参数应该理解为对象,而不是指针

猜你喜欢

转载自www.cnblogs.com/mgfsos/p/10455698.html