C++成员选择运营商

发布于 2024-10-16 23:19:16 字数 311 浏览 3 评论 0原文

可能的重复:
点 (.)运算符和->在 C++ 中?

C++ 有以下成员选择运算符:.->

它们之间的主要区别是什么?

谢谢。

Possible Duplicate:
What is the difference between the dot (.) operator and -> in C++?

C++ has the following member selection operators: . and ->.

What is the main difference between them?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玩世 2024-10-23 23:19:16

. 与非指针一起使用,而 -> 与指针一起使用,以访问成员!

Sample s;
Sample *pS = new Sample();

s.f() ;  //call function using non-pointer object
pS->f(); //call the same function, using pointer to object

. 不能重载,而 -> 可以重载。

. is used with non-pointers, while -> is used with pointers, to access members!

Sample s;
Sample *pS = new Sample();

s.f() ;  //call function using non-pointer object
pS->f(); //call the same function, using pointer to object

. cannot be overloaded, while -> can be overloaded.

韵柒 2024-10-23 23:19:16

pointer2object->member()
等于
(*pointer2object).member()
我想,这是为了更方便而设计的。

pointer2object->member()
is equal to
(*pointer2object).member()
and is made for more convinience, as I suppose.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文