如何正确使用opCall?

发布于 2024-12-20 11:11:08 字数 426 浏览 0 评论 0原文

struct Foo{

  int _a;

  this(int a){ _a = a; }

  int opCall(int b){ return b * b; }
}

Foo f;
int rt = f(33); //Error: cannot implicitly convert expression ((Foo __ctmp1294 = 0;
                //, __ctmp1294).this(33)) of type Foo to int

我在 TDPL 或网站上找不到有关 opCall 的足够信息。

我需要 this()opCall(),但是,当 this() 存在时,上面的代码不起作用。我必须摆脱构造函数吗?

struct Foo{

  int _a;

  this(int a){ _a = a; }

  int opCall(int b){ return b * b; }
}

Foo f;
int rt = f(33); //Error: cannot implicitly convert expression ((Foo __ctmp1294 = 0;
                //, __ctmp1294).this(33)) of type Foo to int

I can't find enough information on opCall in TDPL or the website.

I need both the this() and opCall(), but, when the this() is present, the above code doesn't work. Do I have to get rid of the constructor?

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

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

发布评论

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

评论(1

dawn曙光 2024-12-27 11:11:08

上面的代码应该可以工作,但由于错误#6036而无法工作。

The above code should work, but doesn't due to bug #6036.

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