operator ->重载是怎么做到的?

匿名 (未验证) 提交于 2019-12-02 23:57:01

https://stackoverflow.com/questions/8777845/overloading-member-access-operators-c

struct client     { int a; };  struct proxy {     client *target;     client *operator->() const         { return target; } };  struct proxy2 {     proxy *target;     proxy &operator->() const         { return * target; } };  void f() {     client x = { 3 };     proxy y = { & x };     proxy2 z = { & y };      std

并非如普通操作符一样在class内部定义一个函数做重载,而是通过一个代理类.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!