C++相当于Java的this

发布于 2024-11-27 12:45:28 字数 276 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(3

我不会写诗 2024-12-04 12:45:28

相同的单词:this

唯一的区别是它是一个指针,因此您需要使用 -> 运算符:

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

Same word: this

Only difference is it is a pointer, so you need to use the -> operator:

void setX(int x)
{
    this->x = x;
}
南街女流氓 2024-12-04 12:45:28

C++ 的等价物是 this,但有一些差异。

这是指向相关对象的指针,而不是引用;因此,在访问字段或方法之前必须使用指针取消引用运算符。

(*this).method(...)
(*this).field

或者,使用更流行的语法

this->method(...)
this->field    

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.

(*this).method(...)
(*this).field

or, using the more popular syntax

this->method(...)
this->field    
吾性傲以野 2024-12-04 12:45:28

C++ 的等价物是 this;也就是说,关键字是相同的。

The C++ equivalent is this; that is, the keyword is the same.

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