华清远见上海中心22071班--10.11作业

一、将对象树模型手动实现一遍

#include <iostream>
#include <list>

using namespace std;
class obj;
typedef list<obj*> childlist;
//定义基类
class obj
{
public:
    childlist children;
    obj(obj* parent=NULL)
    {
        if(parent!=nullptr)
        {
            parent->children.push_back(this);
        }
    }
    virtual ~obj()
    {
        for(childlist::iterator it=children.begin();it!=children.end();it++)
        {
            delete *it;
        }
    }

};
//定义子类
class A:public obj
{
public:
    A(obj * parent=nullptr)
    {
        if(nullptr!=parent)
        {
            parent->children.push_back(this);
        }
    }
    ~A()
    {
        cout<<"A的析构"<<endl;
    }
};
//定义子类
class B:public obj
{
public:
    B(obj * parent=nullptr)
    {
        if(nullptr!=parent)
        {
            parent->children.push_back(this);
        }
    }
    ~B()
    {
        cout<<"B的析构"<<endl;
    }
};
int main()
{
    A a;
    B *b = new B(&a);
    delete b;
    return 0;
}

二、 将信号与槽函数的代码手动实现一遍

头文件:
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QPushButton>


class Widget : public QWidget
{
    Q_OBJECT
private:
    QPushButton *btn1;
    QPushButton *btn2;
    QPushButton *btn3;
public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

    //定义关于btn1的槽函数
    void page_change();
    void settex();

};
#endif // WIDGET_H
源文件:
#include "widget.h"
#include <iostream>
#include <QDebug>
#include <QPushButton>
#include <unistd.h>
using namespace std;
//有参构造
Widget::Widget(QWidget *parent)
    : QWidget(parent)
{
    this->setWindowTitle("window of the world");
    qDebug()<<this->windowTitle();
    //设置窗口大小
    this->setFixedSize(1000,1000);
    //设置透明度
    this->setWindowOpacity(0.9);

    btn1 = new QPushButton ("login",this);
    btn1->setFixedSize(200,100);
    btn1->move(450,200);

    btn2 = new QPushButton ("check",this);
    btn2->setFixedSize(200,100);
    btn2->move(450,400);

    btn3 = new QPushButton ("launch",this);
    btn3->setFixedSize(200,100);
    btn3->move(450,600);

    //qt5版本 信号与槽
    connect(btn1,&QPushButton::clicked,this,&Widget::page_change);
   // connect(btn2,SIGNAL(clicked()),this,SLOT(settex()));
    connect(btn2,&QPushButton::clicked,this,&Widget::settex);
}

Widget::~Widget()
{
}

void Widget::page_change()
{
    btn2->setText("checking....");
}

void Widget::settex()
{
    btn3->setText("launched...");
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值