溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何進(jìn)行Qt?信號自定義槽函數(shù)的實(shí)現(xiàn)

發(fā)布時間:2021-11-26 13:17:31 來源:億速云 閱讀:253 作者:柒染 欄目:開發(fā)技術(shù)

本篇文章為大家展示了如何進(jìn)行Qt 信號自定義槽函數(shù)的實(shí)現(xiàn),內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

Qt中實(shí)現(xiàn)自定義信號與槽函數(shù),信號用于發(fā)送并觸發(fā)槽函數(shù),槽函數(shù)則是具體的功能實(shí)現(xiàn),如下我們以老師學(xué)生為例子簡單學(xué)習(xí)一下信號與槽函數(shù)的使用方法。

使用無參數(shù)信號與槽

首先定義一個teacher類,該類中用于發(fā)送一個信號,其次student類,定義用于接收該信號的槽函數(shù),最后在widget中使用emit觸發(fā)信號,當(dāng)老師說下課時,學(xué)生請客吃飯。

teacher.h 中只需要定義信號。定義一個 void hungry(); 信號。

#ifndef TEACHER_H
#define TEACHER_H

#include <QObject>

class Teacher : public QObject
{
    Q_OBJECT
public:
    explicit Teacher(QObject *parent = nullptr);

signals:
    // 定義一個信號,信號必須為void類型,且信號不能實(shí)現(xiàn)
    void hungry();
};

#endif // TEACHER_H

student中需要定義槽聲明,并實(shí)現(xiàn)槽。

student.h

#ifndef STUDENT_H
#define STUDENT_H

#include <QObject>

class Student : public QObject
{
    Q_OBJECT
public:
    explicit Student(QObject *parent = nullptr);

signals:

public slots:
    // 自定義槽函數(shù)
    // 槽函數(shù)必須定義且必須要聲明才可以使用
    void treat();
};

#endif // STUDENT_H

student.cpp

#include "student.h"
#include <QDebug>

Student::Student(QObject *parent) : QObject(parent)
{

}

// 槽函數(shù)的實(shí)現(xiàn)過程如下
void Student::treat()
{
    qDebug() << "請老師吃飯";
}

Widget.h定義信號發(fā)送函數(shù),與類

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include "student.h"
#include "teacher.h"

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

    // 定義學(xué)生與老師類
    Teacher *zt;
    Student *st;

    // 定義信號發(fā)送函數(shù)
    void classIsOver();

};
#endif // WIDGET_H

Widget.cpp 具體實(shí)現(xiàn)

#include "widget.h"

Widget::Widget(QWidget *parent): QWidget(parent)
{
    zt = new Teacher(this);
    st = new Student(this);

    // zt向st發(fā)送信號,信號是&Teacher::hungry 處理槽函數(shù)是 &Student::treat
    connect(zt,&Teacher::hungry,st,&Student::treat);

    classIsOver();
}

Widget::~Widget()
{
}

// 觸發(fā)信號
void Widget::classIsOver()
{
    emit zt->hungry();
}

使用有參信號傳遞

只需要再無參基礎(chǔ)上改進(jìn)

widget.cpp

#include "widget.h"

Widget::Widget(QWidget *parent): QWidget(parent)
{
    zt = new Teacher(this);
    st = new Student(this);

    void(Teacher:: *teacherPtr)(QString) = &Teacher::hungry;
    void(Student:: *studentPtr)(QString) = &Student::treat;
    connect(zt,teacherPtr,st,studentPtr);
    classIsOver();
}

Widget::~Widget()
{
}

// 觸發(fā)信號
void Widget::classIsOver()
{
    emit zt->hungry("kao'leng'mian烤冷面");
}

student.cpp

#include "student.h"
#include <QDebug>

Student::Student(QObject *parent) : QObject(parent)
{

}

// 槽函數(shù)的實(shí)現(xiàn)過程如下
void Student::treat()
{
    qDebug() << "請老師吃飯";
}


void Student::treat(QString foodName)
{
    qDebug() << "請老師吃飯了!,老師要吃:" << foodName.toUtf8().data() ;
}

student.h

#ifndef STUDENT_H
#define STUDENT_H

#include <QObject>

class Student : public QObject
{
    Q_OBJECT
public:
    explicit Student(QObject *parent = nullptr);

signals:

public slots:
    // 自定義槽函數(shù)
    // 槽函數(shù)必須定義且必須要聲明才可以使用
    void treat();
    void treat(QString);
};

#endif // STUDENT_H

teacher.h

#ifndef TEACHER_H
#define TEACHER_H

#include <QObject>

class Teacher : public QObject
{
    Q_OBJECT
public:
    explicit Teacher(QObject *parent = nullptr);

signals:
    // 定義一個信號,信號必須為void類型,且信號不能實(shí)現(xiàn)
    void hungry();
    void hungry( QString foodName );
};

#endif // TEACHER_H

widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QString>
#include <QPushButton>
#include "student.h"
#include "teacher.h"

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

    // 定義學(xué)生與老師類
    Teacher *zt;
    Student *st;

    // 定義信號發(fā)送函數(shù)
    void classIsOver();

};
#endif // WIDGET_H

點(diǎn)擊按鈕觸發(fā)信號

當(dāng)我們點(diǎn)擊按鈕時,自動觸發(fā)信號。只需需改widget中的內(nèi)容。

Widget::Widget(QWidget *parent): QWidget(parent)
{
    st = new Student(this);
    tt = new Teacher(this);

    QPushButton *btn = new QPushButton("發(fā)送郵件",this);

    void(Teacher:: *teacherPtr)(void) = &Teacher::send_mail;
    void(Student:: *studentPtr)(void) = &Student::read_mail;

    // 將btn綁定到button上,點(diǎn)擊后觸發(fā)tt 里面的teacherPtr -> 產(chǎn)生信號send_mail;
    connect(btn,&QPushButton::clicked,tt,teacherPtr);
    // 接著將產(chǎn)生信號綁定到 st 里面的student -> 也就是read_mail槽函數(shù)上。
    connect(tt,teacherPtr,st,studentPtr);
}

匿名函數(shù)與槽

Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget)
{

    ui->setupUi(this);

    // 使用Lambda表達(dá)式,其中的[=] 對文件內(nèi)的變量生效,其中[btn]則是對btn按鈕生效
    // 默認(rèn)會調(diào)用一次完成初始化,這是由()決定的函數(shù)調(diào)用。
    [=](){
        this->setWindowTitle("初始化..");
    }();

    // 使用mutable可以改變通過值傳遞的變量
    int number = 10;

    QPushButton *btn_ptr1 = new QPushButton("改變變量值",this);
    btn_ptr1->move(100,100);

    // 點(diǎn)擊按鈕改變內(nèi)部變量的值,由于值傳遞所以不會影響外部變量的變化
    connect(btn_ptr1,&QPushButton::clicked,this,[=]()mutable{
       number = number + 100;
       std::cout << "inner: " << number << std::endl;
    });

    // 當(dāng)點(diǎn)擊以下按鈕時number還是原值
    QPushButton *btn_ptr2 = new QPushButton("測試值傳遞",this);
    btn_ptr2->move(100,200);
    connect(btn_ptr2,&QPushButton::clicked,this,[=](){
       std::cout << "The Value: " << number << std::endl;
    });

    // 使用Lambda表達(dá)式返回值,有時存在返回的情況
    int ref = []()->int{
        return 1000;
    }();
    std::cout << "Return = " << ref << std::endl;
}

上述內(nèi)容就是如何進(jìn)行Qt 信號自定義槽函數(shù)的實(shí)現(xiàn),你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

qt
AI