QT概括-Rainy

Qt 虽然经常被当做一个 GUI 库,用来开发图形界面应用程序,但这并不是 Qt 的全部;Qt 除了可以绘制漂亮的界面(包括控件、布局、交互),还包含很多其它功能,比如多线程、访问数据库、图像处理、音频视频处理、网络通信、文件操作等,这些 Qt 都已经内置了。

笔者大部分时间都在使用Qt开发各类应用,qt又恰好弥补了c++语言本身开发业务所需要的的库,纯C++一般做业务开发大量依赖第三方库,导致一个项目可能混杂十几个第三方库,每个库的线程管理机制都不尽相同,库使用文档之类的学习成本也甚高,这很让人困扰给开发者造成许多额外负担。

不过要学习qt也不是一件简单的事情,它的设计虽然已经尽可能易于使用,但不意味着简单qt就简单好学,它仍需要使用者对时间及自身的沉淀。



相关网址

官网在线下载
其它下载
关于大佬Qt总结
QML Book
QML Book中文
QCustomPlot 绘图库

ps:关于QML的学习,可以前往B站,输入QML搜索关键字,便可查阅到相关的大量学习视频。



常用小技巧

换源安装提速

- 中国科学技术大学 http://mirrors.ustc.edu.cn/qtproject/
- 清华大学 https://mirrors.tuna.tsinghua.edu.cn/qt/
- 北京理工大学 http://mirror.bit.edu.cn/qtproject/
- 中国互联网络信息中心 http://mirror.bit.edu.cn/qtproject/
// cmd命令程序可以是qt-unified-windows-x64-4.5.2-online,也可以是MaintenanceTool.exe。
[cmd] --mirror [URL]
// 示例
qt-unified-windows-x64-4.5.2-online.exe --mirror https://mirror.nju.edu.cn/qt  
PS D:\qt> .\MaintenanceTool.exe --mirror https://mirror.nju.edu.cn/qt

延迟调用对象函数

使用QMetaObject::invokeMethod()函数,进行安全调用及延迟调用。

// 记住最后一个参数必须为Qt::QueuedConnection,这样它就会进入对象的线程队列中去,否则它会立即执行的。
QMetaObject::invokeMethod(this, std::bind(&App::onOpen, this), Qt::QueuedConnection);

windows打包

可以在Qt的安装目录中,找到${QT_PATH}\qt\6.2.4\msvc2019_64\binwindeployqt.exe来进行程序打包。这里是对应msvc版本的,如果是mingw则去mingw的路径中去寻找。

D:\qt\6.2.4\msvc2019_64>windeployqt -h
Usage: windeployqt [options] [files]
Qt Deploy Tool 6.2.4The simplest way to use windeployqt is to add the bin directory of your Qt
installation (e.g. <QT_DIR\bin>) to the PATH variable and then run:windeployqt <path-to-app-binary>
If ICU, etc. are not in the bin directory, they need to be in the PATH
variable. If your application uses Qt Quick, run:windeployqt --qmldir <path-to-app-qml-files> <path-to-app-binary>Options:-?, -h, --help              Displays help on commandline options.--help-all                  Displays help including Qt specific options.-v, --version               Displays version information.--dir <directory>           Use directory instead of binary directory.--qmake <path>              Use specified qmake instead of qmake from PATH.--libdir <path>             Copy libraries to path.--plugindir <path>          Copy plugins to path.--debug                     Assume debug binaries.--release                   Assume release binaries.--pdb                       Deploy .pdb files (MSVC).--force                     Force updating files.--dry-run                   Simulation mode. Behave normally, but do notcopy/update any files.--no-patchqt                Do not patch the Qt6Core library.--ignore-library-errors     Ignore errors when libraries cannot be found.--no-plugins                Skip plugin deployment.--no-libraries              Skip library deployment.--qmldir <directory>        Scan for QML-imports starting from directory.--qmlimport <directory>     Add the given path to the QML module searchlocations.--no-quick-import           Skip deployment of Qt Quick imports.--translations <languages>  A comma-separated list of languages to deploy(de,fi).--no-translations           Skip deployment of translations.--no-system-d3d-compiler    Skip deployment of the system D3D compiler.--compiler-runtime          Deploy compiler runtime (Desktop only).--no-virtualkeyboard        Disable deployment of the Virtual Keyboard.--no-compiler-runtime       Do not deploy compiler runtime (Desktop only).--json                      Print to stdout in JSON format.--no-opengl-sw              Do not deploy the software rasterizer library.--list <option>             Print only the names of the files copied.Available options:source:   absolute path of the source filestarget:   absolute path of the target filesrelative: paths of the target files, relativeto the target directorymapping:  outputs the source and the relativetarget, suitable for use within anAppx mapping file--verbose <level>           Verbose level (0-2).Qt libraries can be added by passing their name (-xml) or removed by passing
the name prepended by --no- (--no-xml). Available libraries:
bluetooth concurrent core declarative designer designercomponents gamepad gui
qthelp multimedia multimediawidgets multimediaquick network nfc opengl
openglwidgets positioning printsupport qml qmltooling quick quickparticles
quickwidgets script scripttools sensors serialport sql svg svgwidgets test
websockets widgets winextras xml webenginecore webengine webenginewidgets 3dcore
3drenderer 3dquick 3dquickrenderer 3dinput 3danimation 3dextras geoservices
webchannel texttospeech serialbus webview shadertoolsArguments:[files]                     Binaries or directory containing the binary.

打开vim按键映射

勾选使用FakeVim
QtVim



核心知识点

对象树

对象树机制并不是继承子父类关系,而是一种对象与对象之间的父节点与字节点的关系。在这个机制下,Qt是不建议你使用栈内存创建对象的(最顶层节点对象除外),所以你创建Qt对象应该以new动态内存分配比较合适。

setParent()方法可以设置对象的上级节点关系,一旦设置了这种节点关系之后,在父节点对象在析构销毁时,则会把子节点进行释放,以此来达到内存泄露的管理问题。

不过对象树有一点限制,就是对象树的整个节点树必须都是同一个线程对象绑定。假设对象A关联线程A,对象B关联线程B它们之间是无法设置父子节点对象树关系的。要设置对象树关系必须满足,对象A关联线程A,对象B也关联线程A,它们之间关联同一个线程才可以设置它们之间的对象树关系。

信号与槽与多线程

其实信号与槽是很优秀机制,它把异步编程做了很巧妙的封装,同时提出了解决多线程解决方案及思路及设计。

在关联信号与槽时,提供了一个参数,这个参数描述了触发信号时如何执行槽函数的策略,大多数时候我们不填最后一个参数代表默认自动。

对笔者而言只关注两个点,触发信号时立即调用还是由别的线程调用?

假设对象A是发射信号方,对象B是槽函数处理方。根据线程关联机制,那么有两种情况,1.对象A和对象B关联到同一个线程。2.对象A和对象B关联在不同的线程。

如果针对的是情况1,同属于一个线程,那么它则会立即调用。只有一个线程并不存在线程的缓存一致性问题及资源互斥问题。

如果针对的是情况2,不同属一个线程,那么它不会立即调用。而是将处理投入到槽函数所在的对象事件列表中,等待时机进行调用。

它这么设计的原因是,是以单线程为模型的多线程设计。因为在单线程中不存在资源互斥的问题,但是有些数据是要在另一个线程处理的,处理后的结果需要给回这个线程。因为它的每个线程都有一个执行事件队列,我们投入设置操作由那个线程去执行,在投入执行队列中肯定是互斥的,但对于使用者来说它可以避免使用大量的锁。只需要专注于单线程开发机制,控制好线程之间的变量与模块边界。

这种机制也不是完全没有问题,比如一些全局的数据操作就是一个很大的问题。比如,警报记录这种全局的消息,你可能给每个设备单独配置了一个线程,那么在查询处理设备时它产生的异常总是需要记录下来的。如果是多个设备那么就会存在,多个设备竞争互斥一个数据结构的问题。那如果我们将这个数据结构单独配置为一个线程,修改操作只能通过信号与槽的形式,是否就解决了这个问题呢?

没有解决,读写往往是同时存在的操作,一个数据结构往往都是要具备读和写的操作,所以这种形式你写也只能通过信号与槽进行查询,然后在将结果通过信号发出,其实不用将信号发出也是可以的,我们可以使用元调用一样将操作推入到该对象的线程去执行。

最简单的方式就是将这个列表使用互斥锁保护起来,这样就不需要通过线程读写的方式来进行了,这在大多数时候都是非常有效且简单的方式。但有些时候我们往往读的操作要数倍于写操作,这个时候需要提升读的并行能力,最简单且有效的方式是读写锁,该互斥提升允许读锁的并行能力,在大量读操作的情况下效率是要优于写操作的。当然笔者在大多数时候也是优先考虑互斥量及读写锁来解决全局数据结构的访问问题。

当然对于读操作写操作更多情况下,仍有一种方案。即们设计一个数据结构作为master独立运行于单独的一个模块内,然后在其它salve模块内放置一份这个数据结构的拷贝。这样在模块有数据进行读操作直接从模块的数据数据进行读操作即可,这样不需要加锁以为该资源为线程资源,提升了读的效率。但写操作则要更加复杂一些,写操作只能将操作发送到master模块中进行修改,修改完毕要发送修到所有salve模块告诉他们那个数据已经进行修改了,让他们的数据结构进行同步操作放置数据出现不一致的情况。

线程对象绑定

继承QObject对象之后,可以使用moveThread()将对象转移到另一个线程中去。由于父节点于子节点必须同属关联同一个线程,如果转移节点的线程拥有父节点,那么需要设置setParent(nullptr)脱离父节点才可以转移,并且其节点下面的所有子节点也会一并转移到此线程进行关联。在创建对象时,会将所在的线程进行关联为线程对象,例如在主线程创建的对象默认就关联主线程。

线程事件循环

QThread对象中,如果执行start()函数,它默认执行的run()函数实现是调用exec()进行事件循环阻塞。这个事件阻塞,会等待事件进行执行调用也就是信号与槽的基础。如果你实现的是自定义QThread如果要关联其它对象那么必须要执行exec(),否则它无法进行关联的槽函数调用。

元属性系统

Qt的元属性系统非常复杂,相关的有Q_PROPERTY设置的动态属性,还要Q_INVOKABLE所设置的元属性方法。其中Q_INVOKABLE所设置的方法能被QML直接调用,Q_PORPERTY属性也是一样的。这是一个基于反射的信息系统,会调用相关连绑定的一些函数。除了这两个常用的外,还有许多元属性的宏,它是由moc生成的部分代码。比如Q_ENUM。包括信号槽传参也是一样要对应的类型进行元注册之后才可以使用。
当然Qt的元系统没有那么简单,不过也是依赖moc生成文件,里面涉及到的东西复杂且多。笔者在这里也不乱说什么。



Qt插件系统

Qt基本插件

所谓的插件就是动态库的一种延申扩展,基于系统所支持的动态加载库及卸载库的基础实现的,Qt Plugin则是qt的一种规范,或者所支持的包装格式。

当然关于插件的设计思想其实大差不差的,必须要满足一些规则。比如说,必须是dll的形式,存在在某些指定目录下在程序运行的过程中进行加载。当然插件设计者本身仍需考虑二进制兼容的问题,我们无法保证dll与.exe使用的是同一个编译器各方面的规则都完全相同。尤其是在dll与exe进行交互时,参数的设计对象等。

Qt插件实现类需要继承,QObject。

相关宏

  • Q_DECLARE_INTERFACE 这个宏将给定的标识符(字符串字面值)关联到名为ClassName的接口类,标识符必须是唯一的。
  • Q_PLUGIN_METADATA 此宏用于声明元数据,该元数据是实例化此对象的插件的一部分。
  • Q_INTERFACES 这个宏告诉Qt类实现了哪些接口。这在实现插件时使用。
  • QT_MOC_EXPORT_PLUGIN moc编译器生成的代码文件,该宏创建了dll导出函数以及创建对象实例函数。

从源码中看出Q_DECLARE_INTERFACE宏,实际上是创建了对应的对象的元信息系统函数尤其是关于qobject_cast<IFace *>(QObject *object),qt安全转换的对象真相qt_metacast()函数实际上是由moc编译器所生成的函数。

#  define Q_DECLARE_INTERFACE(IFace, IId) \template <> inline const char *qobject_interface_iid<IFace *>() \{ return IId; } \template <> inline IFace *qobject_cast<IFace *>(QObject *object) \{ return reinterpret_cast<IFace *>((object ? object->qt_metacast(IId) : nullptr)); } \template <> inline IFace *qobject_cast<IFace *>(const QObject *object) \{ return reinterpret_cast<IFace *>((object ? const_cast<QObject *>(object)->qt_metacast(IId) : nullptr)); }
#endif // Q_MOC_RUN

Q_PLUGIN_METADATA,其实就是Qt自动生成对应的元信息的宏,那个iid数值是用于qobject_cast<>()转换时用到的FILE则是一个文件的内容是JSON格式,里面描述的信息可以被QPluginLoader的metaData()获取到。

#define Q_PLUGIN_METADATA(x) QT_ANNOTATE_CLASS(qt_plugin_metadata, x)

Q_INTERFACES,也是Qt自动生成对应的元信息宏,生成的信息用于qobject_cast<>()进行类型转换查询。

#define Q_INTERFACES(x) QT_ANNOTATE_CLASS(qt_interfaces, x)

QT_MOC_EXPORT_PLUGIN,生成导出dll函数以及创建对象实例方法,静态插件的方法会有点差别但位置一样的。

#define Q_PLUGIN_INSTANCE(IMPLEMENTATION) \{ \static QT_PREPEND_NAMESPACE(QPointer)<QT_PREPEND_NAMESPACE(QObject)> _instance; \if (!_instance) {    \QT_PLUGIN_RESOURCE_INIT \_instance = new IMPLEMENTATION; \} \return _instance; \}#  define QT_MOC_EXPORT_PLUGIN(PLUGINCLASS, PLUGINCLASSNAME)      \Q_EXTERN_C Q_DECL_EXPORT \const char *qt_plugin_query_metadata() \{ return reinterpret_cast<const char *>(qt_pluginMetaData); } \Q_EXTERN_C Q_DECL_EXPORT QT_PREPEND_NAMESPACE(QObject) *qt_plugin_instance() \Q_PLUGIN_INSTANCE(PLUGINCLASS)

一个示例

接口文件定义接口

#ifndef ECHOINTERFACE_H
#define ECHOINTERFACE_H#include <QObject>
#include <QString>//! [0]
class EchoInterface
{
public:virtual ~EchoInterface() = default;virtual QString echo(const QString &message) = 0;
};QT_BEGIN_NAMESPACE#define EchoInterface_iid "org.qt-project.Qt.Examples.EchoInterface"Q_DECLARE_INTERFACE(EchoInterface, EchoInterface_iid)
QT_END_NAMESPACE//! [0]
#endif

EchoPlugin插件文件

#ifndef ECHOPLUGIN_H
#define ECHOPLUGIN_H#include <QObject>
#include <QtPlugin>
#include "echointerface.h"//! [0]
class EchoPlugin : public QObject, EchoInterface
{Q_OBJECTQ_PLUGIN_METADATA(IID "org.qt-project.Qt.Examples.EchoInterface" FILE "echoplugin.json")Q_INTERFACES(EchoInterface)public:QString echo(const QString &message) override;
};
//! [0]#endif

自动生成的moc代码文件,接口转换部分代码。ps:这可是qt安全转换对象的真相哦。

void *EchoPlugin::qt_metacast(const char *_clname)
{if (!_clname) return nullptr;if (!strcmp(_clname, qt_meta_stringdata_EchoPlugin.stringdata0))return static_cast<void*>(this);if (!strcmp(_clname, "EchoInterface"))return static_cast< EchoInterface*>(this);if (!strcmp(_clname, "org.qt-project.Qt.Examples.EchoInterface"))return static_cast< EchoInterface*>(this);return QObject::qt_metacast(_clname);
}

在这里的话,只能算作是低级插件。但其实高级插件也是一样的东西,只不过是继承它指定的类,而不是自己编写类。
具体的话,你可以查阅源码编译MySQL你会发现它在main文件则是继承的QSqlDriverPlugin驱动来实现。具体可以查阅文档,一般都是实现它的create方法即可。

编译MySQL数据库Qt驱动

目前版本的Qt并不自带Mysql驱动,Mysql驱动需要自行进行编译。好在源码中提供了,Qt插件驱动的项目D:\qt\5.15.2\Src\qtbase\src\plugins\sqldrivers\mysql
ps:如果没有安装源码,请先安装源码。
ps:请自行替换为自己的QT路径。

需要对此mysql的.pro文件进行修改,按照下面的方式修改,MySQL C库设置INCLUDEPATH 和LIBS。

TARGET = qsqlmysqlHEADERS += $$PWD/qsql_mysql_p.h
SOURCES += $$PWD/qsql_mysql.cpp $$PWD/main.cpp#QMAKE_USE += mysqlOTHER_FILES += mysql.jsonPLUGIN_CLASS_NAME = QMYSQLDriverPlugin
include(../qsqldriverbase.pri)#MySQL c库的头文件路径
INCLUDEPATH += "C:\Program Files\MySQL\MySQL Server 8.0\include"#mysql c库的.lib路径
LIBS += -L"C:\Program Files\MySQL\MySQL Server 8.0\lib" -l"libmysql"

点击编译,即可将MySQL驱动插件编译完成,然后打开vs命令行,进入编译出来的目录输入指令nmake install安装到qt环境中去,最后再把libmysql.dll拷贝到qt的bin目录,这样运行MySQL驱动时就不会缺少底层依赖了。

windows c sdk获取问题。Windows平台安装的mysql,在mysql server中默认包含了c api库。



Model-View(模型视图)

MVC模式是软件工程中常见的一种软件架构模式,该模式把软件系统(项目)分为三个基本部分:模型(Model)、视图(View)和控制器(Controller)。使用MVC模式有很多优势,例如:简化后期对项目的修改、扩展等维护操作;使项目的某一部分变得可以重复利用;使项目的结构更加直观。

有三个关键的抽象类作为扩展接口。

QAbstractItemDelegate               // 呈现项交互项,即渲染显示项,以及与用户交互时的QWidget部件
QAbstractItemModel                  // 数据源模型,用来提供显示数据层面的一个模型
QAbstractItemView                   // 视图交互展示并且与交互事件

代理(QAbstractItemView)

项代理,负责项的视觉呈现以及生产用户交互的编辑代理,最后将交互的数据设置到模型中,最后模型刷新view视图更新数据显示。在自定义项代理时分为两个部分。

  • 渲染部分
 // 绘制代理项内容,option包含了widget及rect等关键数据
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const = 0  // 推荐绘制项的大小,并不一定起作用,比如listview中,你设置height是可以生效的但width则是不会考虑,tableview则是height与widht都不予以考虑。
virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const = 0  
  • 交互部分
// 创建一个用户交互编辑部件,然后返回
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const// 设置交互编辑部件里面的数据
virtual void setEditorData(QWidget *editor, const QModelIndex &index) const// 更新设置小部件基于父项部件的大小及坐标
virtual void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const// 将编辑完成的数据写入到模型中去
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const

当然,qt也提供了QStyledItemDelegate一个带有渲染的代理项进行展示,用户只需要负责创建交互小部件即可。这也是推荐的作法。
一个代码例子,我们在项的左边画个椭圆200个像素,然后右边显示数据内容。用到了自定义绘制,用了Qt样式部件的项绘制就是项的默认呈现绘制样式表也是可以生效的。
当然QStyledItemDelegate也差不多是这个逻辑实现的。除了显示还创建了编辑交互代理,需要注意创建交互代理的流程,在编辑完成时要发送的数据。

ps:原谅笔者只展示核心的关键代码部分,完整代码有些不方便编写。

void ItemDelegate::paint(QPainter *painter,const QStyleOptionViewItem &option, const QModelIndex &index) const {// 绘制背景if (option.state & QStyle::State_Selected) {// 被选中状态设置成红色painter->setBrush(Qt::red);} else if (option.state & QStyle::State_MouseOver) {// 鼠标盘旋设置为绿色painter->setBrush(Qt::green);} else {// 默认为黑色painter->setBrush(Qt::black);}// 画一个椭圆painter->drawEllipse(option.rect.x(), option.rect.y(), 200, option.rect.height());QStyleOptionViewItem opt = option;// 设置宽度及x轴,这里不需要减去椭圆部分的,因为默认它会减去x的坐标opt.rect.setWidth(opt.rect.width());opt.rect.setX(opt.rect.x() + 200);// 拿到要显示的数据opt.text = index.data().toString();// 使用qt样式进行绘制控制外形可以 样式表能生效,重点是要传入opt.widget参数qApp->style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget);
}QSize ItemDelegate::sizeHint(const QStyleOptionViewItem &option,const QModelIndex &/*index*/) const {return QSize(option.rect.width(), 200);
}QWidget *ItemDelegate::createEditor(QWidget *parent,const QStyleOptionViewItem &option,const QModelIndex &index) const {// 交互小部件,调用顺序1qDebug() << __FUNCTION__;// 创建一个编辑小部件QLineEdit* line = new QLineEdit(parent);// 关联小部件编辑完成时,进行提交和关闭小部件,否则的话是不会调用到sheModelData函数的QObject::connect(line, &QLineEdit::editingFinished, this, &ItemDelegate::editFinish);return line;
}void ItemDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {// 交互小部件,调用顺序3qDebug() << __FUNCTION__;// 设置小部件数据显示QLineEdit* line = qobject_cast<QLineEdit*>(editor);if (line)line->setText(index.data(Qt::DisplayRole).toString());
}void ItemDelegate::setModelData(QWidget *editor,QAbstractItemModel *model,const QModelIndex &index) const {// 交互小部件,调用顺序4qDebug() << __FUNCTION__;// 将小部件的数据更新到模型中QLineEdit* line = qobject_cast<QLineEdit*>(editor);if (line)model->setData(index, line->text(), Qt::EditRole);
}void ItemDelegate::updateEditorGeometry(QWidget *editor,const QStyleOptionViewItem &option,const QModelIndex &/*index*/) const {// 交互小部件,调用顺序2qDebug() << __FUNCTION__;// 设置小部件对于父部件的位置,位置信息在opiton中editor->setGeometry(option.rect);
}void ItemDelegate::editFinish() {// 完成编辑提交数据,关闭编辑器QLineEdit* line = qobject_cast<QLineEdit*>(sender());emit commitData(line);emit closeEditor(line);
}

模型(QAbstractItemModel)

QAbstractItemModel类定义了项目模型必须使用的标准接口,以便能够与模型/视图体系结构中的其他组件进行互操作。
其实大多数使用者并不了解这个,官方提供了QStandardItemModel一个标准模型,它毕竟是易于使用则为更多人所知。相对的在于某些情况下需要自定义实现model时,也有QAbstractListModel与QAbstractTableModel来进行更为便捷的继承实现。
在qt的示例中则提供了许多例子来帮助我们理解D:\qt\Examples\Qt-6.2.4\widgets\itemviews

QAbstractItemModel必须实现的接口
不要把模型和实际数据结构混为一谈,这里的模型应该只是指定了一些接口规则。比如data()获取数据时,是区分不同的角色获得不同的数据。

// 返回列数
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const = 0
// 返回行数
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const = 0
// 返回指定角色的值
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const = 0
// 返回指定行列的索引,在list和table中,parent参数始终为QModelIndex(),无效索引
virtual QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const = 0
// 返回指定索引的父索引
virtual QModelIndex parent(const QModelIndex &index) const = 0

刷新视图相关操作函数与信号
在更改模型数据时,通知视图刷新的规则与操作。

// 信号,数据发生改变时发送,通知视图刷新
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QList<int> &roles = QList<int>())// 标题头数据改边时发送,通知视图刷新
void headerDataChanged(Qt::Orientation orientation, int first, int last)// 布局发生改变前发出
void layoutAboutToBeChanged(const QList<QPersistentModelIndex> &parents = QList<QPersistentModelIndex>(), QAbstractItemModel::LayoutChangeHint hint = QAbstractItemModel::NoLayoutChangeHint
// 更改持久索引
void changePersistentIndex(const QModelIndex &from, const QModelIndex &to)
// 布局改变完成,刷新视图
void layoutChanged(const QList<QPersistentModelIndex> &parents = QList<QPersistentModelIndex>(), QAbstractItemModel::LayoutChangeHint hint = QAbstractItemModel::NoLayoutChangeHint)// 重置刷新视图
void beginResetModel()
void endResetModel()// 刷新视图指定的列
void beginInsertColumns(const QModelIndex &parent, int first, int last)
void endInsertColumns()// 刷新视图指定的行
void beginInsertRows(const QModelIndex &parent, int first, int last)
void endInsertRows()// 刷新视图移动指定的行
bool beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationChild)
void endMoveRows()// 刷新视图移动的列
bool beginMoveColumns(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationChild)
void endMoveColumns()

笔者以qt示例中的D:\qt\Examples\Qt-6.2.4\widgets\itemviews\editabletreemodel的代码进行简单的理解一下。
你问,“笔者为何不写一个新例子?”
笔者,“那是因为笔者不会写啊,还有能别的理由吗?”

treeitem.h

#ifndef TREEITEM_H
#define TREEITEM_H#include <QVariant>
#include <QList>//! [0]
// 项结构是一个树型结构的套娃设计,不要因为套娃而迷糊,虽然笔者也曾在第一次接触链表套娃时迷糊了很久。
class TreeItem
{
public:explicit TreeItem(const QList<QVariant> &data, TreeItem *parent = nullptr);~TreeItem();// 获取指定位置的子项节点TreeItem *child(int number);// 获取子节点数量int childCount() const;// 获取列的数量int columnCount() const;// 返回当前项的指定列的值,注意这个可不是model的那个data()QVariant data(int column) const;// 指定位置,插入count子项,每个子项都有columns列(扩展子项)bool insertChildren(int position, int count, int columns);// 指定位置,插入指定数量的列(扩展数据列)bool insertColumns(int position, int columns);// 返回父项TreeItem *parent();// 移除指定位置的,count子项行bool removeChildren(int position, int count);// 移除指定位置的,columns列项bool removeColumns(int position, int columns);// 返回处于父项所在的位置int childNumber() const;// 设置指定列的数据bool setData(int column, const QVariant &value);
private:QList<TreeItem *> childItems;			// 这里是一个列表存储着子项列表QList<QVariant> itemData;				// 对应不同角色的存储不同角色的值列表TreeItem *parentItem;					// 父项
};
//! [0]#endif // TREEITEM_H

treeitem.cpp

#include "treeitem.h"//! [0]
TreeItem::TreeItem(const QList<QVariant> &data, TreeItem *parent): itemData(data), parentItem(parent)
{}
//! [0]//! [1]
TreeItem::~TreeItem()
{// 删除全部子项,这是个便捷宏qDeleteAll(childItems);
}
//! [1]//! [2]
TreeItem *TreeItem::child(int number)
{if (number < 0 || number >= childItems.size())return nullptr;return childItems.at(number);
}
//! [2]//! [3]
int TreeItem::childCount() const
{return childItems.count();
}
//! [3]//! [4]
int TreeItem::childNumber() const
{// 父项存在,根节点父项其实是nullif (parentItem)return parentItem->childItems.indexOf(const_cast<TreeItem*>(this));return 0;
}
//! [4]//! [5]
int TreeItem::columnCount() const
{return itemData.count();
}
//! [5]//! [6]
QVariant TreeItem::data(int column) const
{if (column < 0 || column >= itemData.size())return QVariant();return itemData.at(column);
}
//! [6]//! [7]
bool TreeItem::insertChildren(int position, int count, int columns)
{if (position < 0 || position > childItems.size())return false;// 添加子项for (int row = 0; row < count; ++row) {// 创建columns的数据列QList<QVariant> data(columns);// 创建一个子项TreeItem *item = new TreeItem(data, this);// 添加子项到指定位置childItems.insert(position, item);}return true;
}
//! [7]//! [8]
bool TreeItem::insertColumns(int position, int columns)
{if (position < 0 || position > itemData.size())return false;// 当前项扩展列for (int column = 0; column < columns; ++column)itemData.insert(position, QVariant());// 子项扩展列for (TreeItem *child : qAsConst(childItems))child->insertColumns(position, columns);return true;
}
//! [8]//! [9]
TreeItem *TreeItem::parent()
{return parentItem;
}
//! [9]//! [10]
bool TreeItem::removeChildren(int position, int count)
{if (position < 0 || position + count > childItems.size())return false;// 移除指定数量的子项for (int row = 0; row < count; ++row)delete childItems.takeAt(position);return true;
}
//! [10]bool TreeItem::removeColumns(int position, int columns)
{if (position < 0 || position + columns > itemData.size())return false;// 移除当前项的指定数据列for (int column = 0; column < columns; ++column)itemData.remove(position);// 子项移除指定的数据列for (TreeItem *child : qAsConst(childItems))child->removeColumns(position, columns);return true;
}//! [11]
bool TreeItem::setData(int column, const QVariant &value)
{if (column < 0 || column >= itemData.size())return false;// 设置指定列数据itemData[column] = value;return true;
}
//! [11]

treemodel.h

#ifndef TREEMODEL_H
#define TREEMODEL_H#include <QAbstractItemModel>
#include <QModelIndex>
#include <QVariant>// 声明对象,这样声明之后就不需要在这边的头文件进行文件包含,但这里的类型不可以实例只能是指针或引用的类型,这是一种非常常用的操作
class TreeItem;//! [0]
class TreeModel : public QAbstractItemModel
{Q_OBJECT
public:// 构造函数,data这里是序列化文本数据TreeModel(const QStringList &headers, const QString &data, QObject *parent = nullptr);~TreeModel();
//! [0] //! [1]// 根据role获取数据QVariant data(const QModelIndex &index, int role) const override;// 获取头数据QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;// 获取索引,他们是相对于parent获取的,所以为啥要有parent参数,在list和table中parent则为null索引QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;// 获取索引处的父项索引QModelIndex parent(const QModelIndex &index) const override;// 返回指定父项索引的子项行数,list和table则为nullint rowCount(const QModelIndex &parent = QModelIndex()) const override;// 返回列数,和行数不同,列数一般都是统一固定的,所以这里parent在这里实际上没有用到int columnCount(const QModelIndex &parent = QModelIndex()) const override;
//! [1]//! [2]// 获取索引项的标志,比如是否可以编辑之类的Qt::ItemFlags flags(const QModelIndex &index) const override;// 将数据设置到指定处索引bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;// 设置标题列数据bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole) override;// 插入指定位置的columns列bool insertColumns(int position, int columns, const QModelIndex &parent = QModelIndex()) override;// 移除指定位置columns列bool removeColumns(int position, int columns, const QModelIndex &parent = QModelIndex()) override;// 插入指定索引位置的row行bool insertRows(int position, int rows, const QModelIndex &parent = QModelIndex()) override;// 移除指定位置rowh行bool removeRows(int position, int rows, const QModelIndex &parent = QModelIndex()) override;private:// 设置模型初始化数据void setupModelData(const QStringList &lines, TreeItem *parent);// 通过索引返回TreeItem对象TreeItem *getItem(const QModelIndex &index) const;TreeItem *rootItem;			// 根项
};
//! [2]#endif // TREEMODEL_H

treemodel.cpp

#include "treemodel.h"
#include "treeitem.h"#include <QtWidgets>//! [0]
TreeModel::TreeModel(const QStringList &headers, const QString &data, QObject *parent): QAbstractItemModel(parent)
{// 设置列头标题QList<QVariant> rootData;for (const QString &header : headers)rootData << header;// 创建根节点rootItem = new TreeItem(rootData);// 解析data数据,进行配置初始化setupModelData(data.split('\n'), rootItem);
}
//! [0]//! [1]
TreeModel::~TreeModel()
{// 删除根节点delete rootItem;
}
//! [1]//! [2]
int TreeModel::columnCount(const QModelIndex &parent) const
{Q_UNUSED(parent);return rootItem->columnCount();
}
//! [2]QVariant TreeModel::data(const QModelIndex &index, int role) const
{// 索引无效,则返回无效的值if (!index.isValid())return QVariant();// 如果数据角色不是指定的显示角色也不是可编辑的角色,就返回无效的值。角色判断是根据自己的场景来设置的,在自定义model时要结合自身的实际情况if (role != Qt::DisplayRole && role != Qt::EditRole)return QVariant();// 通过索引获取到原本的节点TreeItem *item = getItem(index);// 节点返回数据return item->data(index.column());
}//! [3]
Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
{// 索引是无效的,则返回项的数据是不可用if (!index.isValid())return Qt::NoItemFlags;// 索引返回可编辑属性 加上一些默认属性,这里可以由视图判断绘制是否选中提供代理编辑return Qt::ItemIsEditable | QAbstractItemModel::flags(index);
}
//! [3]//! [4]
TreeItem *TreeModel::getItem(const QModelIndex &index) const
{// 索引有效,那就获取到索创建createIndex()索引时所传递的进来的void* 指针参数if (index.isValid()) {TreeItem *item = static_cast<TreeItem*>(index.internalPointer());if (item)return item;}return rootItem;
}
//! [4]QVariant TreeModel::headerData(int section, Qt::Orientation orientation,int role) const
{// 如果是水平,并且角色为显示时,那就返回根节点所保存的列表头数据if (orientation == Qt::Horizontal && role == Qt::DisplayRole)return rootItem->data(section);return QVariant();
}//! [5]
QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent) const
{// 这里判断父索引时候的,要考虑到下面代码中的createIndex(parentItem->childNumber(), 0, parentItem),列参数传递是0,否则你会无法理解if (parent.isValid() && parent.column() != 0)return QModelIndex();
//! [5]//! [6]// 通过索引获取员的项TreeItem *parentItem = getItem(parent);if (!parentItem)return QModelIndex();// 获取指定行的项,之后创建索引返回TreeItem *childItem = parentItem->child(row);if (childItem)return createIndex(row, column, childItem);return QModelIndex();
}
//! [6]bool TreeModel::insertColumns(int position, int columns, const QModelIndex &parent)
{// 插入指定的列数,这里最后必须-1,它是前开后闭假设,position=0;columns=1,那么范围是[0,0] = 所以 [0, 0 + 1 - 1]// beginInsertColumns()必须调用,这是局部刷新beginInsertColumns(parent, position, position + columns - 1);const bool success = rootItem->insertColumns(position, columns);endInsertColumns();return success;
}bool TreeModel::insertRows(int position, int rows, const QModelIndex &parent)
{TreeItem *parentItem = getItem(parent);if (!parentItem)return false;        // 这里和上面一样,只是改为了行beginInsertRows(parent, position, position + rows - 1);const bool success = parentItem->insertChildren(position,rows,rootItem->columnCount());endInsertRows();return success;
}//! [7]
QModelIndex TreeModel::parent(const QModelIndex &index) const
{// 索引无效if (!index.isValid())return QModelIndex();// 这里是获取父项TreeItem *childItem = getItem(index);TreeItem *parentItem = childItem ? childItem->parent() : nullptr;// 如果父项等于根项,或者父项为null,那么都返回无效的项,无效的项在这里代表最顶层的项if (parentItem == rootItem || !parentItem)return QModelIndex();// 创建父项索引返回return createIndex(parentItem->childNumber(), 0, parentItem);
}
//! [7]bool TreeModel::removeColumns(int position, int columns, const QModelIndex &parent)
{// beginRemoveColumns()参考前面的注释来理解,这里是局部刷新移除的列beginRemoveColumns(parent, position, position + columns - 1);const bool success = rootItem->removeColumns(position, columns);endRemoveColumns();// 如果列数为0,那么就删除全部节点if (rootItem->columnCount() == 0)removeRows(0, rowCount());return success;
}bool TreeModel::removeRows(int position, int rows, const QModelIndex &parent)
{TreeItem *parentItem = getItem(parent);if (!parentItem)return false;// beginRemoveRows()参考前面的注释来理解,这里是局部刷新移除的行beginRemoveRows(parent, position, position + rows - 1);const bool success = parentItem->removeChildren(position, rows);endRemoveRows();return success;
}//! [8]
int TreeModel::rowCount(const QModelIndex &parent) const
{// 父项有效,并且父项的列数大于0,那么返回0行。因为这个父项有问题,因为获取父项的函数,返回的索引列数都为0if (parent.isValid() && parent.column() > 0)return 0;const TreeItem *parentItem = getItem(parent);// 返回子项数return parentItem ? parentItem->childCount() : 0;
}
//! [8]bool TreeModel::setData(const QModelIndex &index, const QVariant &value, int role)
{// 设置数据时,角色要为可编辑角色if (role != Qt::EditRole)return false;TreeItem *item = getItem(index);// 设置数据bool result = item->setData(index.column(), value);// 设置数据完成后要发出数据改变的信号来刷新视图if (result)emit dataChanged(index, index, {Qt::DisplayRole, Qt::EditRole});return result;
}bool TreeModel::setHeaderData(int section, Qt::Orientation orientation,const QVariant &value, int role)
{if (role != Qt::EditRole || orientation != Qt::Horizontal)return false;const bool result = rootItem->setData(section, value);// 列头数据被修改,发出信号通知视图if (result)emit headerDataChanged(orientation, section, section);return result;
}void TreeModel::setupModelData(const QStringList &lines, TreeItem *parent)
{// 这个函数不用在意,这是示例初始化模型数据,此时模型还未设置到视图中,所以不用发出视图刷新相关的指示信号操作QList<TreeItem *> parents;QList<int> indentations;parents << parent;indentations << 0;int number = 0;while (number < lines.count()) {int position = 0;while (position < lines[number].length()) {if (lines[number].at(position) != ' ')break;++position;}const QString lineData = lines[number].mid(position).trimmed();if (!lineData.isEmpty()) {// Read the column data from the rest of the line.const QStringList columnStrings =lineData.split(QLatin1Char('\t'), Qt::SkipEmptyParts);QList<QVariant> columnData;columnData.reserve(columnStrings.size());for (const QString &columnString : columnStrings)columnData << columnString;if (position > indentations.last()) {// The last child of the current parent is now the new parent// unless the current parent has no children.if (parents.last()->childCount() > 0) {parents << parents.last()->child(parents.last()->childCount()-1);indentations << position;}} else {while (position < indentations.last() && parents.count() > 0) {parents.pop_back();indentations.pop_back();}}// Append a new item to the current parent's list of children.TreeItem *parent = parents.last();parent->insertChildren(parent->childCount(), 1, rootItem->columnCount());for (int column = 0; column < columnData.size(); ++column)parent->child(parent->childCount() - 1)->setData(column, columnData[column]);}++number;}
}


Qt日志系统

我们经常用的qDebug()打印日志调试信息函数,就是日志系统里面的。在Qt的日志系统中,消息是分为日志器类别,然后每个日志器类别在区分日志等级。我们常用的qDebug()打印消息则属于default日志类别。
系统许多模块他们都有单独的日志类别,虽然他们平常不打印出来。

相关宏、函数

// 安装日志输出最终处理函数,qInstallMessageHandler(nullptr)则设置回默认的处理函数。
QtMessageHandler qInstallMessageHandler(QtMessageHandler handler)// 设置过滤的规则,这是默认规则才生效的,如果安装了自定义的过滤函数,则不会生效
void QLoggingCategory::setFilterRules(const QString &rules)// 设置安装过滤处理函数
QLoggingCategory::CategoryFilter installFilter(QLoggingCategory::CategoryFilter filter)// 设置消息格式
void qSetMessagePattern(const QString &pattern)// 默认的日志器
QLoggingCategory *defaultCategory()// 声明一个外部的日志器
Q_DECLARE_LOGGING_CATEGORY(name)// 创建日志器,这里只是用宏来包装了,所以看起来很黑科技
Q_LOGGING_CATEGORY(name, string, msgType)
Q_LOGGING_CATEGORY(name, string)// 日志器输出消息,和qDebug()其实差不多的,qDebug() 相当于 qCDebug(QLoggingCategory::defaultCategory())
qCCritical(category, const char *message, ...)
qCCritical(category)
qCDebug(category, const char *message, ...)
qCDebug(category)
qCInfo(category, const char *message, ...)
qCInfo(category)
qCWarning(category, const char *message, ...)
qCWarning(category)

安装自定义的最终输入处理

QtMessageHandler qInstallMessageHandler(QtMessageHandler handler)

官方示例,其实不用过多解释,基本上有点编程基础的人一看就懂了,如果没有特别的需求一般我们不会更改它。

 #include <qapplication.h>#include <stdio.h>#include <stdlib.h>void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg){QByteArray localMsg = msg.toLocal8Bit();const char *file = context.file ? context.file : "";const char *function = context.function ? context.function : "";switch (type) {case QtDebugMsg:fprintf(stderr, "Debug: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);break;case QtInfoMsg:fprintf(stderr, "Info: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);break;case QtWarningMsg:fprintf(stderr, "Warning: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);break;case QtCriticalMsg:fprintf(stderr, "Critical: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);break;case QtFatalMsg:fprintf(stderr, "Fatal: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);break;}}int main(int argc, char **argv){qInstallMessageHandler(myMessageOutput);QApplication app(argc, argv);...return app.exec();}

设置过滤的规则,这是默认规则才生效的,如果安装了自定义的过滤函数,则不会生效

void QLoggingCategory::setFilterRules(const QString &rules)// 语法规则 <category>[.<type>] = true|false// 例子,driver.usb是日志器的名称
QLoggingCategory::setFilterRules(QStringLiteral("driver.usb.debug=true"));// 设置多个日志器的控制
QLoggingCategory::setFilterRules("*.debug=false\n""driver.usb.debug=true");// 其它的设置方式,请去查阅官方文档。								

设置安装过滤处理函数

// 如果你不想配置日志规则想按照自己的方式来控制日志器的过滤,可以直接安装自己的过滤处理函数,笔者建议请谨慎操作。
QLoggingCategory::CategoryFilter installFilter(QLoggingCategory::CategoryFilter filter)// 它默认的过滤处理函数
void QLoggingRegistry::defaultCategoryFilter(QLoggingCategory *cat)
{const QLoggingRegistry *reg = QLoggingRegistry::instance();Q_ASSERT(reg->categories.contains(cat));QtMsgType enableForLevel = reg->categories.value(cat);// NB: note that the numeric values of the Qt*Msg constants are//     not in severity order.bool debug = (enableForLevel == QtDebugMsg);bool info = debug || (enableForLevel == QtInfoMsg);bool warning = info || (enableForLevel == QtWarningMsg);bool critical = warning || (enableForLevel == QtCriticalMsg);// hard-wired implementation of//   qt.*.debug=false//   qt.debug=falseif (const char *categoryName = cat->categoryName()) {// == "qt" or startsWith("qt.")if (strcmp(categoryName, "qt") == 0 || strncmp(categoryName, "qt.", 3) == 0)debug = false;}const auto categoryName = QLatin1String(cat->categoryName());for (const auto &ruleSet : reg->ruleSets) {for (const auto &rule : ruleSet) {int filterpass = rule.pass(categoryName, QtDebugMsg);if (filterpass != 0)debug = (filterpass > 0);filterpass = rule.pass(categoryName, QtInfoMsg);if (filterpass != 0)info = (filterpass > 0);filterpass = rule.pass(categoryName, QtWarningMsg);if (filterpass != 0)warning = (filterpass > 0);filterpass = rule.pass(categoryName, QtCriticalMsg);if (filterpass != 0)critical = (filterpass > 0);}}cat->setEnabled(QtDebugMsg, debug);cat->setEnabled(QtInfoMsg, info);cat->setEnabled(QtWarningMsg, warning);cat->setEnabled(QtCriticalMsg, critical);
}

设置消息打印格式

void qSetMessagePattern(const QString &pattern)

请查看这个格式,比如你想打印,类型、日志器、消息、行号。

 qSetMessagePattern("%{type} %{category} %{message} %{line}");

在这里插入图片描述

声明一个外部的日志器,实际上代码是这样的

Q_DECLARE_LOGGING_CATEGORY(name)// 这个函数是外部的
#define Q_DECLARE_LOGGING_CATEGORY(name) \extern const QLoggingCategory &name();

创建日志器

Q_LOGGING_CATEGORY(name, string, msgType)
Q_LOGGING_CATEGORY(name, string)// 这里实际上是一个函数name就是函数的名称,后面的都是QLoggingCategory对象的参数
#define Q_LOGGING_CATEGORY(name, ...) \const QLoggingCategory &name() \{ \static const QLoggingCategory category(__VA_ARGS__); \return category; \}// 没有规定函数名称和日志器一定要相同的,所以你可以这样。
Q_LOGGING_CATEGORY(rainy, "Jie")// 使用的时候是这样的,它的日志器名称为Jie
qCDebug(rainy()) << "hello rainy";

比如你一般来说只需要自定义一个属于自己的日志类别,那么下面的代码可以给你带来参考。

// 在使用日志类别的地方声明这个函数,比如这里就叫rainy
Q_DECLARE_LOGGING_CATEGORY(rainy)// 任意cpp文件中去实现这个函数,rainy是函数名称,后面是构造日志器的参数
Q_LOGGING_CATEGORY(rainy, "Jie")// 获取日志器,你可以通过日志器来配置日志过滤或者检查判断开启了那些过滤
rainy()// 打印日志的话,可以这样样子。
qCDebug(rainy()) << "hello rainy";

未完待续....

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/57934.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++笔记之静态成员函数可以在类外部访问私有构造函数吗?

C笔记之静态成员函数可以在类外部访问私有构造函数吗&#xff1f; 参考笔记&#xff1a; 1.C笔记之静态成员函数可以在类外部访问私有构造函数吗&#xff1f; 2.C笔记之设计模式&#xff1a;setter函数、依赖注入 3.C笔记之两个类的实例之间传递参数——通过构造函数传递类对象…

Java 电子招标采购系统源码:营造全面规范安全的电子招投标环境,促进招投标市场健康可持续发展

营造全面规范安全的电子招投标环境&#xff0c;促进招投标市场健康可持续发展 传统采购模式面临的挑战 一、立项管理 1、招标立项申请 功能点&#xff1a;招标类项目立项申请入口&#xff0c;用户可以保存为草稿&#xff0c;提交。 2、非招标立项申请 功能点&#xff1a;非招标…

成功通过技术面试的策略:程序员必备指南

&#x1f337;&#x1f341; 博主猫头虎 带您 Go to New World.✨&#x1f341; &#x1f984; 博客首页——猫头虎的博客&#x1f390; &#x1f433;《面试题大全专栏》 文章图文并茂&#x1f995;生动形象&#x1f996;简单易学&#xff01;欢迎大家来踩踩~&#x1f33a; &a…

企业电子招标采购系统源码java 版本 Spring Cloud + Spring Boot

项目说明 随着公司的快速发展&#xff0c;企业人员和经营规模不断壮大&#xff0c;公司对内部招采管理的提升提出了更高的要求。在企业里建立一个公平、公开、公正的采购环境&#xff0c;最大限度控制采购成本至关重要。符合国家电子招投标法律法规及相关规范&#xff0c;以及…

Unity创建一个可移动的2D角色

文章目录 创建角色与场景创建地面 角色控制脚本检测地面 运行结果 创建角色与场景 我们首先创建一个角色&#xff0c;这里我新建了一个胶囊体用来当Player&#xff0c;一个Square用来当地面。 接下来&#xff0c;为角色增加碰撞体和刚体&#xff0c;为地面增加碰撞体。然后我…

WebDAV之π-Disk派盘 + 小象记账

小象记账是一款非常干净便捷的手机记账软件,这款软件的界面非常的简洁,整体以大面积的背景色、文字与符号的黑灰色为主,非常的简约,而且它的字体采用的是幼圆类字体并提高了字重,与整体的设计风格交相呼应,不仅提升了文字可读性还减少了用户的视觉疲劳。除了出色的外表之…

爬虫逆向实战(二十四)--某鸟记录中心

一、数据接口分析 主页地址&#xff1a;某鸟记录中心 1、抓包 通过抓包可以发现数据接口是front/record/search/page 2、判断是否有加密参数 请求参数是否加密&#xff1f; 通过查看“载荷”模块可以发现&#xff0c;请求参数是加密的 请求头是否加密&#xff1f; 通过查…

安装虚拟机

软硬件准备 软件&#xff1a;推荐使用VMwear&#xff0c;我用的是VMwear 12 镜像&#xff1a;CentOS7 ,如果没有镜像可以在官网下载 &#xff1a;http://isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1804.iso 硬件&#xff1a;因为是在宿主机上运行虚拟…

RabbitMQ集群搭建和测试总结_亲测

RabbiMQ简介 RabbitMQ是用Erlang开发的&#xff0c;集群非常方便&#xff0c;因为Erlang天生就是一门分布式语言&#xff0c;但其本身并不支持负载均衡。 RabbitMQ模式 RabbitMQ模式大概分为以下三种: (1)单一模式。 (2)普通模式(默认的集群模式)。 (3)镜像模式(把需要的队列…

工厂生产作业流程合规检测

工厂生产作业流程合规检测系统通过yolov7网络模型算法&#xff0c;工厂生产作业流程合规检测对作业人员的操作行为进行全面监测&#xff0c;通过图像识别算法和数据分析&#xff0c;对人员的操作动作、工具使用、安全防护等方面进行检测和评估&#xff0c;能够实时监测工人的操…

Verilog 实现超声波测距

Verilog 实现超声波测距 教学视频&#xff1a; https://www.bilibili.com/video/BV1Ve411x75W?p33&spm_id_frompageDriver&vd_source19ae31dff4056e52d2729a4ca212602b 超声波测距原理 参考资料&#xff1a;STM32的超声波测距程序_超声波测距stm32程序_VaderZhang的…

Python工具箱系列(四十一)

使用zip批量压缩文件 前文的代码示例了使用gzip对单个文件进行压缩。本文示例使用更通用的zipfile来批量压缩文件。zipfile也是python内置的库&#xff0c;使用起来非常方便。废话不说&#xff0c;直接上代码示例。 import dbm import glob import zipfile# 保存压缩计划的库名…

AtCoder Beginner Contest 317(D-G)

D - President (atcoder.jp) &#xff08;1&#xff09;题目大意 &#xff08;2&#xff09;解题思路 考虑到z最大不超过1e5&#xff0c;N最多不超过100&#xff0c;因此可以考虑用背包来写&#xff0c;dp[j]表示拿高桥拿j分最少需要花费多少个选民转换&#xff0c;最后把答案取…

防御网络攻击风险的4个步骤

如今&#xff0c;人们正在做大量工作来保护 IT 系统免受网络犯罪的侵害。令人担忧的是&#xff0c;对于运营技术系统来说&#xff0c;情况却并非如此&#xff0c;运营技术系统用于运行从工厂到石油管道再到发电厂的所有业务。 组织应该强化其网络安全策略&#xff0c;因为针对…

移动电源专用的单节锂离子电池充电器和恒定 5V 升压控制器HU5715

航誉微HU5715 为一款移动电源专用的单节锂离子电池充电器和恒定 5V 升压控制器&#xff0c;充电 部分集高精度电压和充电电流调节器、预充、充电状态指示和充电截止等功能于一体&#xff0c; 可以输出最大 1A 充电电流。而升压电路采用 CMOS 工艺制造的空载电流极低的 VFM 开 关…

运用Python解析HTML页面获取资料

在网络爬虫的应用中&#xff0c;我们经常需要从HTML页面中提取图片、音频和文字资源。本文将介绍如何使用Python的requests库和BeautifulSoup解析HTML页面&#xff0c;获取这些资源。 一、环境准备 首先&#xff0c;确保您已经安装了Python环境。接下来&#xff0c;我们需要安…

【Java基础篇】一文搞懂Java方法的调用与重载(超详细)

个人主页&#xff1a;兜里有颗棉花糖 欢迎 点赞&#x1f44d; 收藏✨ 留言✉ 加关注&#x1f493;本文由 兜里有颗棉花糖 原创 收录于专栏【JavaSE_primary】 目录 一、方法的概念以及使用1.1什么是方法1.2方法定义1.3方法调用的执行过程1.4形参和实参的关系 二、方法的重载方…

聚观早报|2023戴尔科技峰会助力创新;小米汽车电池供应商敲定

【聚观365】8月23日消息 2023戴尔科技峰会助力企业创新 小米汽车电池供应商敲定中创新航和宁德时代 iPhone15预计有6种配色 王小川卸任自动驾驶企业禾多科技董事 特斯拉动力总成副总裁宣布离职 2023戴尔科技峰会助力企业创新 近日“新生万物 数实新格局 —— 2023戴尔科技…

暑期实习总结(焊点数据管理软件开发):Python操作MySQL数据库、Django搭建前端网页、以及Excel中数据与MySQL数据库的互转

暑期实习总结&#xff08;焊点数据管理软件开发&#xff09;:Python操作MySQL数据库、Django搭建前端网页、以及Excel中数据与MySQL数据库的互转 ​ 这一周是我在企业实习的最后一周&#xff0c;在企业做的项目已基本完成。这篇博客的目的也是总结一些项目中的一些小问题&…

实用的面试经验分享:程序员们谈论他们的面试历程

&#x1f337;&#x1f341; 博主猫头虎 带您 Go to New World.✨&#x1f341; &#x1f984; 博客首页——猫头虎的博客&#x1f390; &#x1f433;《面试题大全专栏》 文章图文并茂&#x1f995;生动形象&#x1f996;简单易学&#xff01;欢迎大家来踩踩~&#x1f33a; &a…