C++相当于Java的this
在 Java 中,您可以通过执行以下操作来引用当前对象:this.x = x
。在 C++ 中如何做到这一点?
假设每个代码示例都是名为 Shape
的类的一部分。
Java:
public void setX(int x)
{
this.x = x;
}
C++:
public:
void setX(int x)
{
//?
}
In Java you can refer to the current object by doing: this.x = x
. How do you do this in C++?
Assume that each of these code examples are part of a class called Shape
.
Java:
public void setX(int x)
{
this.x = x;
}
C++:
public:
void setX(int x)
{
//?
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
相同的单词:
this
唯一的区别是它是一个指针,因此您需要使用
->
运算符:Same word:
this
Only difference is it is a pointer, so you need to use the
->
operator:C++ 的等价物是
this
,但有一些差异。这是指向相关对象的指针,而不是引用;因此,在访问字段或方法之前必须使用指针取消引用运算符。
或者,使用更流行的语法
The C++ equivalent is
this
, but there are a few differences.This is a pointer to the object in question, not a reference; so, you must use pointer dereferencing operators before accessing fields or methods.
or, using the more popular syntax
C++ 的等价物是
this
;也就是说,关键字是相同的。The C++ equivalent is
this
; that is, the keyword is the same.