gpt4 book ai didi

c++ - 在 Qt 中使用 C++ 运算符作为插槽

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:29:26 25 4
gpt4 key购买 nike

我想知道是否可以(以及如何)使用 C++ 运算符,例如 ()、[] 作为 Qt 槽。

编译器似乎在提示这段简单的代码

class MainWindowDecorator : public QObject
{ Q_OBJECT
private:
//some variables

public slots:
int operator[](int i)
{
return i;
}
}

错误如下:

Error: Not a signal or slot declaration

最佳答案

您可以创建将调用专用 operator 的插槽包装器。

问题是 moc 解析器不允许该定义,可能是因为它需要标识符而不是关键字。

关于c++ - 在 Qt 中使用 C++ 运算符作为插槽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14156343/

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