重载解引用运算符

发布于 2024-08-26 04:39:08 字数 273 浏览 6 评论 0原文

我试图重载取消引用运算符,但编译以下代码会导致错误 'initializing' :无法从 'X' 转换为 'int':

struct X {
    void f() {}
    int operator*() const { return 5; }
};

int main()
{
    X* x = new X;
    int t = *x;
    delete x;
    return -898;
}

我做错了什么?

I'm trying to overload the dereference operator, but compiling the following code results in the error 'initializing' : cannot convert from 'X' to 'int':

struct X {
    void f() {}
    int operator*() const { return 5; }
};

int main()
{
    X* x = new X;
    int t = *x;
    delete x;
    return -898;
}

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

岁月静好 2024-09-02 04:39:08

您应该将解引用运算符应用于类类型。在您的代码中 x 有一个指针类型。写下以下内容:

int t = **x;

int t = x->operator*();

You should apply dereference operator to a class type. In your code x has a pointer type. Write the following:

int t = **x;

or

int t = x->operator*();
泪冰清 2024-09-02 04:39:08

您正在取消引用指向 X 的指针。你的课程没问题(就其实施而言)。

int main()
{
    X x; // no pointer
    int t = *x; // x acts like a pointer
}

You're dereferencing a pointer to X. Your class is OK (as far as it's implemented).

int main()
{
    X x; // no pointer
    int t = *x; // x acts like a pointer
}
意中人 2024-09-02 04:39:08

如果您希望原始代码起作用,您需要为您的类重载 int-cast 运算符:

operator int() const { return 5; }

If you want the original code to work, you need to overload the int-cast operator for your class:

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