gpt4 book ai didi

java - 为什么在 C++ 中使用 this->ObjectName 而不是 this.ObjectName

转载 作者:太空宇宙 更新时间:2023-11-04 15:40:49 24 4
gpt4 key购买 nike

<分区>

Hello World,我一直想知道为什么在 c++ 中我们使用 this-ObjectName 而不是 this.ObjectName 在 c++ 中引用对象时。这是一个使用 this-ObjectName 的简单语法:

     int x = 34;
void take(int x) {
this->x = x;
}

但是在其他编程语言如 java 中,我们使用:

     int x = 34;
void take(int x) {
this.x = x;
}

所以我要问的是为什么c++中的this语句与java中的this语句不同

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com