gpt4 book ai didi

c++ - 是否允许分配给取消引用的 this (*this)?

转载 作者:可可西里 更新时间:2023-11-01 17:52:37 26 4
gpt4 key购买 nike

我目前正在更新我的 C++ 技能,想知道是否可以为 *this 分配一些东西。我知道分配给 this 是被禁止的,但找不到与我的情况相同的信息。

一个例子:

class Foo {
int x;
public:
Foo(int x) : x(x) {}
Foo incr() { return Foo(x+1); }
void incr_() { (*this) = incr(); }
};

编辑:将 incr() 的返回类型从 void 更正为 Foo

最佳答案

是的,这是允许的,它实际上调用了您类的赋值运算符。

关于c++ - 是否允许分配给取消引用的 this (*this)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3944501/

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