QSerialPort 新信号槽语法没有匹配的成员函数调用 'connect'
QSerialPort new signal slot syntax no matching member function for call to 'connect'
我正在尝试使用新的信号和槽语法,但在连接函数时出现编译错误。在这种情况下如何使用新语法?
// Qt 5.4.1, Apple LLVM version 6.1.0 and qmake 3.0
private slots:
void onError(QSerialPort::SerialPortError code);
private:
QSerialPort *m_port;
Link::Link(QObject *parent) : QObject(parent) {
m_port = new QSerialPort(parent);
connect(m_port, &QSerialPort::error, this, &Link::onError);
}
完整的错误信息:
error: no matching member function for call to 'connect'
connect(m_port, &QSerialPort::error, this, &Link::onError);
^~~~~~~
candidate function not viable: no overload of 'error' matching 'const char *' for 2nd argument
static QMetaObject::Connection connect(const QObject *sender, const char *signal,
^
问题是&QSerialPort::error
不明确:
这是您尝试连接的信号:QSerialPort::error(QSerialPort::SerialPortError)
但是还有一个 getter 同名:QSerialPort::error()
这是 QSerialPort class 的不幸设计(QProcess 有同样的问题),可能会在 Qt 6 中修复,但在此之前不会,因为 API 稳定性保证Qt制造。在这种情况下不能使用新式语法连接,因为如果存在名称相同但签名不同的槽或信号重载,则不能使用它们。您必须改用旧语法。
我正在尝试使用新的信号和槽语法,但在连接函数时出现编译错误。在这种情况下如何使用新语法?
// Qt 5.4.1, Apple LLVM version 6.1.0 and qmake 3.0
private slots:
void onError(QSerialPort::SerialPortError code);
private:
QSerialPort *m_port;
Link::Link(QObject *parent) : QObject(parent) {
m_port = new QSerialPort(parent);
connect(m_port, &QSerialPort::error, this, &Link::onError);
}
完整的错误信息:
error: no matching member function for call to 'connect'
connect(m_port, &QSerialPort::error, this, &Link::onError);
^~~~~~~
candidate function not viable: no overload of 'error' matching 'const char *' for 2nd argument
static QMetaObject::Connection connect(const QObject *sender, const char *signal,
^
问题是&QSerialPort::error
不明确:
这是您尝试连接的信号:QSerialPort::error(QSerialPort::SerialPortError)
但是还有一个 getter 同名:QSerialPort::error()
这是 QSerialPort class 的不幸设计(QProcess 有同样的问题),可能会在 Qt 6 中修复,但在此之前不会,因为 API 稳定性保证Qt制造。在这种情况下不能使用新式语法连接,因为如果存在名称相同但签名不同的槽或信号重载,则不能使用它们。您必须改用旧语法。