//QML端为槽函数
//其中serial为C++类的对象
//CSerial?serial(暂且可以这么理解)
QML:
Connections{
? ? ? ? target: serial
? ? ? ? onStringReceived:{
? ? ? ? ? ? console.log("receive:"+receiveString)
? ? ? ? }
? ? }
//C++端为信号
//C++
//C++类为CSerial
signals:
void stringReceived(QString?receiveString);
则在C++端使用信号
stringReceived("this is a message");
将会在QML界面层得到响应。