gpt4 book ai didi

c++ - 重载 "operator X*() const"是什么意思?

转载 作者:行者123 更新时间:2023-11-28 03:31:22 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
what is “operator T*(void)” and when it is invoked?

我们知道下面的代码是重载*和&操作符

X& operator*() const
{
return *this;
}

X* operator&() const
{
return this;
}

但我不知道下面的代码是什么意思? (可以通过build)好像是用来获取X的指针的。

operator X*() const
{
return this;
}

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