C++ Qt 学习(九):模型视图代理

1. Qt 模型视图代理

  • Qt 模型视图代理,也可以称为 MVD 模式
    • 模型(model)、视图(view)、代理(delegate)
    • 主要用来显示编辑数据

在这里插入图片描述

1.1 模型

  • 模型 (Model) 是视图与原始数据之间的接口
    • 原始数据可以是:数据库的一个数据表、内存中的一个 StringList,磁盘文件结构
    • QAbstractItemModel 是所有模型的祖宗类,其它 model 类都派生于它

在这里插入图片描述

1.2 视图

  • 视图 (View) 是显示和编辑数据的界面组件
    • 主要的视图组件有 QListView、QTreeView 和 QTableView
    • QListWidget、QTreeWidget 和 QTableWidget 是视图类的简化版
      • 它们不使用数据模型,而是将数据直接存储在组件的每个项里
    • QAbstractItemView 是所有视图的祖宗类,其它 view 类都派生于它

在这里插入图片描述

1.3 代理

  • 代理 (Delegate) 为视图组件提供数据编辑器
    • 如在表格组件中,编辑一个单元格的数据时,缺省是使用一个 QLineEdit 编辑框
    • 代理负责从数据模型获取相应的数据,然后显示在编辑器里,修改数据后,又将其保存到数据模型中

2. QTableView 应用

在这里插入图片描述

  • tableView.pro
    QT       += core gui// 使用 QAxObject 需添加下行
    // The QAxObject class provides a QObject that wraps a COM object.
    greaterThan(QT_MAJOR_VERSION, 4): QT += widgets axcontainer
    

2.1 widget.ui

在这里插入图片描述

2.2 主窗口

2.2.1 widget.h
#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>
#include <QStandardItemModel>
#include <QItemSelectionModel>
#include "cintspindelegate.h"
#include "cfloatspindelegate.h"
#include "ccomboboxdelegate.h"QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACEclass Widget : public QWidget {Q_OBJECTpublic:Widget(QWidget *parent = nullptr);~Widget();private slots:void on_btnOpenExcel_clicked();void on_btnReshowData_clicked();void OnCurrentChanged(const QModelIndex &current, const QModelIndex &previous);void on_btnAppendLast_clicked();void on_btnAppend_clicked();void on_btnDeleteSelectedLine_clicked();private:Ui::Widget *ui;QStandardItemModel  *m_pItemModel;        // 数据模型QItemSelectionModel *m_pSelectionModel;   // Item 选择模型CIntSpinDelegate    m_intSpinDelegate;    // 整型数 spinbox 代理CFloatSpinDelegate  m_floatSpinDelegate;  // 浮点数 spinbox 代理CComboBoxDelegate   m_comboBoxDelegate;   // combobox 代理
};
#endif // WIDGET_H
2.2.2 widget.cpp
#include "widget.h"
#include "ui_widget.h"
#include <QAxObject>
#include <QFileDialog>
#include <QStandardPaths>static const int COLUMN_COUNT = 7;Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) {ui->setupUi(this);showMaximized();m_pItemModel = new QStandardItemModel(1, COLUMN_COUNT, this);m_pSelectionModel = new QItemSelectionModel(m_pItemModel);  // Item 选择模型// 选择当前单元格变化时的信号与槽connect(m_pSelectionModel, &QItemSelectionModel::currentChanged, this, &Widget::OnCurrentChanged);ui->tableView->setModel(m_pItemModel);                // 设置数据模型ui->tableView->setSelectionModel(m_pSelectionModel);  // 设置选择模型ui->tableView->setSelectionMode(QAbstractItemView::ExtendedSelection);ui->tableView->setSelectionBehavior(QAbstractItemView::SelectItems);// 给第 3,4,5 列设置自定义代理组件ui->tableView->setItemDelegateForColumn(3, &m_floatSpinDelegate);ui->tableView->setItemDelegateForColumn(4, &m_intSpinDelegate);ui->tableView->setItemDelegateForColumn(5, &m_comboBoxDelegate);
}Widget::~Widget() {delete ui;
}// 打开 excel
void Widget::on_btnOpenExcel_clicked() {QAxObject *excel = new QAxObject(this);excel->setControl("Excel.Application");excel->setProperty("Visible", false);  // 显示窗体看效果,选择 ture 将会看到 excel 表格被打开excel->setProperty("DisplayAlerts", true);QAxObject *workbooks = excel->querySubObject("WorkBooks");  // 获取工作簿(excel文件)集合QString str = QFileDialog::getOpenFileName(this, u8"打开excel","D:/MyQtCreatorProject/9_2_tableView",u8"Excel 文件(*.xls *.xlsx)");// 打开刚才选定的 excelworkbooks->dynamicCall("Open(const QString&)", str);QAxObject *workbook = excel->querySubObject("ActiveWorkBook");QAxObject *worksheet = workbook->querySubObject("WorkSheets(int)",1);QAxObject *usedRange = worksheet->querySubObject("UsedRange");   // 获取表格中的数据范围QVariant var = usedRange->dynamicCall("Value");  // 将所有的数据读取到 QVariant 容器中保存QList<QList<QVariant>> excel_list;               // 用于将 QVariant 转换为 Qlist 的二维数组QVariantList varRows = var.toList();if (varRows.isEmpty()) {return;}const int row_count = varRows.size();QVariantList rowData;for (int i = 0; i < row_count; ++i) {rowData = varRows[i].toList();excel_list.push_back(rowData);}// 将每一行的内容放到 contentListQList<QStringList> contentList;for (int i = 0; i < row_count; i++) {QList<QVariant> curList = excel_list.at(i);int curRowCount = curList.size();QStringList oneLineStrlist;for (int j = 0; j < curRowCount; j++) {QString content = curList.at(j).toString();oneLineStrlist << content;}contentList << oneLineStrlist;}workbook->dynamicCall("Close(Boolean)", false);excel->dynamicCall("Quit(void)");delete excel;// 解析 contentList,填充 tableViewint rowCounts = contentList.size();QStandardItem *aItem;// 遍历行for (int i = 0; i < rowCounts; i++) {QStringList tmpList = contentList[i];if(i == 0) {// 设置表头m_pItemModel->setHorizontalHeaderLabels(tmpList);} else {int j;for (j = 0; j < COLUMN_COUNT - 1; j++) {// 不包含最后一列aItem = new QStandardItem(tmpList.at(j));m_pItemModel->setItem(i-1, j, aItem);       // 为模型的某个行列位置设置 Item}// 设置最后一列aItem = new QStandardItem(contentList[0].at(j));  // 获取最后一列的指针aItem->setCheckable(true);  // 设置可以使用 check 控件if (tmpList.at(j) == "0")aItem->setCheckState(Qt::Unchecked);  // 根据数据设置 check 状态elseaItem->setCheckState(Qt::Checked);m_pItemModel->setItem(i-1 , j, aItem);    // 设置最后一列}}
}// 选择单元格变化时的响应
void Widget::OnCurrentChanged(const QModelIndex &current, const QModelIndex &previous) {Q_UNUSED(previous);if (current.isValid()) {  // 当前模型索引有效ui->textEdit->clear();ui->textEdit->append(QString::asprintf(u8"当前单元格:%d行,%d列",current.row(),current.column()));  // 显示模型索引的行和列号QStandardItem *aItem;aItem = m_pItemModel->itemFromIndex(current);           // 从模型索引获得 itemui->textEdit->append(u8"单元格内容:" + aItem->text());  // 显示 item 的文字内容}
}// 在表格最后一行添加
void Widget::on_btnAppendLast_clicked() {QList<QStandardItem*> aItemList;QStandardItem *aItem;for (int i = 0; i < COLUMN_COUNT - 1; i++) {  // 不包含最后 1 列aItem = new QStandardItem(u8"自定义");aItemList << aItem;}// 获取最后一列的表头文字QString str = m_pItemModel->headerData(m_pItemModel->columnCount()-1, Qt::Horizontal, Qt::DisplayRole).toString();aItem = new QStandardItem(str);aItem->setCheckable(true);aItemList<<aItem;   // 添加到容器m_pItemModel->insertRow(m_pItemModel->rowCount(), aItemList);  // 插入一行,需要每个 Cell 的 ItemQModelIndex curIndex = m_pItemModel->index(m_pItemModel->rowCount()-1, 0);  // 创建最后一行的 ModelIndex// 如果之前点击了表格,清空选择项m_pSelectionModel->clearSelection();// 设置刚插入的行为当前选择行m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);
}void Widget::on_btnAppend_clicked() {QList<QStandardItem*> aItemList;QStandardItem *aItem;for(int i = 0; i < COLUMN_COUNT-1; i++) {aItem = new QStandardItem(u8"自定义");aItemList << aItem;}// 获取表头文字QString str = m_pItemModel->headerData(m_pItemModel->columnCount()-1, Qt::Horizontal, Qt::DisplayRole).toString();aItem = new QStandardItem(str);aItem->setCheckable(true);aItemList<<aItem;QModelIndex curIndex = m_pSelectionModel->currentIndex();  // 获取当前选中项的模型索引m_pItemModel->insertRow(curIndex.row(), aItemList);  // 在当前行的前面插入一行m_pSelectionModel->clearSelection();                // 清除已有选择m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);
}// 删除选择的行
void Widget::on_btnDeleteSelectedLine_clicked() {QModelIndex curIndex = m_pSelectionModel->currentIndex();  // 获取当前选择单元格的模型索引if (curIndex.row() == m_pItemModel->rowCount() - 1) {  // 如果是最后一行m_pItemModel->removeRow(curIndex.row());           // 删除最后一行} else {m_pItemModel->removeRow(curIndex.row());           // 删除一行,并重新设置当前选择行m_pSelectionModel->setCurrentIndex(curIndex, QItemSelectionModel::Select);}
}// 将 tableView 的数据显示在 textEdit
void Widget::on_btnReshowData_clicked() {ui->textEdit->clear();  // 清空QStandardItem *aItem;QString str;// 获取表头文字int i, j;for (i = 0; i < m_pItemModel->columnCount(); i++) {aItem = m_pItemModel->horizontalHeaderItem(i);  // 获取表头的一个项数据str = str + aItem->text() + "\t";  // 用 tab 间隔文字}ui->textEdit->append(str);  // 添加为文本框的一行//获取数据区的每行for (i = 0; i < m_pItemModel->rowCount(); i++) {str = "";for (j = 0; j<m_pItemModel->columnCount()-1; j++) {aItem = m_pItemModel->item(i,j);str = str + aItem->text() + QString::asprintf("\t");  //以 tab 分隔}aItem = m_pItemModel->item(i, j);  // 最后一行if (aItem->checkState() == Qt::Checked)str = str + "1";elsestr = str + "0";ui->textEdit->append(str);}
}

2.3 整型数 spinbox 代理

2.3.1 cintspindelegate.h
#ifndef CINTSPINDELEGATE_H
#define CINTSPINDELEGATE_H#include <QStyledItemDelegate>class CIntSpinDelegate : public QStyledItemDelegate {Q_OBJECT
public:CIntSpinDelegate(QObject *parent=0);// 自定义代理组件必须继承以下 4 个函数// 创建编辑组件QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;// 从数据模型获取数据,显示到代理组件中void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;// 将代理组件的数据,保存到数据模型中void setModelData(QWidget *editor, QAbstractItemModel *model,const QModelIndex &index) const Q_DECL_OVERRIDE;// 更新代理编辑组件的大小void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;
};#endif // CINTSPINDELEGATE_H
2.3.2 cintspindelegate.cpp
#include "cintspindelegate.h"
#include <QSpinBox>CIntSpinDelegate::CIntSpinDelegate(QObject *parent) : QStyledItemDelegate(parent) {}QWidget *CIntSpinDelegate::createEditor(QWidget *parent,const QStyleOptionViewItem &option, const QModelIndex &index) const {// 创建代理编辑组件Q_UNUSED(option);Q_UNUSED(index);QSpinBox *editor = new QSpinBox(parent);  // 创建一个 QSpinBoxeditor->setFrame(false);  // 设置为无边框editor->setMinimum(0);editor->setMaximum(120);return editor;  // 返回此编辑器
}void CIntSpinDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {// 从数据模型获取数据,显示到代理组件中// 获取数据模型的模型索引指向的单元的数据int value = index.model()->data(index, Qt::EditRole).toInt();QSpinBox *spinBox = static_cast<QSpinBox*>(editor);  // 强制类型转换spinBox->setValue(value);  // 设置编辑器的数值
}void CIntSpinDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {// 将代理组件的数据,保存到数据模型中QSpinBox *spinBox = static_cast<QSpinBox*>(editor);  // 强制类型转换spinBox->interpretText();      // 解释数据,如果数据被修改后,就触发信号int value = spinBox->value();  // 获取 spinBox 的值model->setData(index, value, Qt::EditRole); //更新到数据模型
}void CIntSpinDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const {// 设置组件大小Q_UNUSED(index);editor->setGeometry(option.rect);
}

2.4 浮点数 spinbox 代理

2.4.1 cfloatspindelegate.h
#ifndef CFLOATSPINDELEGATE_H
#define CFLOATSPINDELEGATE_H#include <QObject>
#include <QWidget>
#include <QStyledItemDelegate>class CFloatSpinDelegate : public QStyledItemDelegate {Q_OBJECT
public:CFloatSpinDelegate(QObject *parent=0);// 自定义代理组件必须继承以下4个函数// 创建编辑组件QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;void setModelData(QWidget *editor, QAbstractItemModel *model,const QModelIndex &index) const Q_DECL_OVERRIDE;void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;
};#endif // CFLOATSPINDELEGATE_H
2.4.2 cfloatspindelegate.cpp
#include "cfloatspindelegate.h"
#include <QDoubleSpinBox>CFloatSpinDelegate::CFloatSpinDelegate(QObject *parent):QStyledItemDelegate(parent) {}QWidget *CFloatSpinDelegate::createEditor(QWidget *parent,const QStyleOptionViewItem &option, const QModelIndex &index) const {Q_UNUSED(option);Q_UNUSED(index);QDoubleSpinBox *editor = new QDoubleSpinBox(parent);editor->setFrame(false);editor->setMinimum(0);editor->setDecimals(2);editor->setMaximum(100);return editor;
}void CFloatSpinDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {float value = index.model()->data(index, Qt::EditRole).toFloat();QDoubleSpinBox *spinBox = static_cast<QDoubleSpinBox*>(editor);spinBox->setValue(value);
}void CFloatSpinDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {QDoubleSpinBox *spinBox = static_cast<QDoubleSpinBox*>(editor);spinBox->interpretText();float value = spinBox->value();QString str = QString::asprintf("%.2f", value);model->setData(index, str, Qt::EditRole);
}void CFloatSpinDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const {editor->setGeometry(option.rect);
}

2.5 combobox 代理

2.5.1 ccomboboxdelegate.h
#ifndef CCOMBOBOXDELEGATE_H
#define CCOMBOBOXDELEGATE_H#include <QItemDelegate>class CComboBoxDelegate : public QItemDelegate {Q_OBJECTpublic:CComboBoxDelegate(QObject *parent=0);// 自定义代理组件必须继承以下4个函数QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;void setEditorData(QWidget *editor, const QModelIndex &index) const Q_DECL_OVERRIDE;void setModelData(QWidget *editor, QAbstractItemModel *model,const QModelIndex &index) const Q_DECL_OVERRIDE;void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option,const QModelIndex &index) const Q_DECL_OVERRIDE;
};#endif // CCOMBOBOXDELEGATE_H
2.5.2 ccomboboxdelegate.cpp
#include "ccomboboxdelegate.h"
#include <QComboBox>CComboBoxDelegate::CComboBoxDelegate(QObject *parent) : QItemDelegate(parent) {}QWidget *CComboBoxDelegate::createEditor(QWidget *parent,const QStyleOptionViewItem &option, const QModelIndex &index) const {QComboBox *editor = new QComboBox(parent);editor->addItem(u8"优");editor->addItem(u8"良");editor->addItem(u8"一般");return editor;
}void CComboBoxDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const {QString str = index.model()->data(index, Qt::EditRole).toString();QComboBox *comboBox = static_cast<QComboBox*>(editor);comboBox->setCurrentText(str);
}void CComboBoxDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {QComboBox *comboBox = static_cast<QComboBox*>(editor);QString str = comboBox->currentText();model->setData(index, str, Qt::EditRole);
}void CComboBoxDelegate::updateEditorGeometry(QWidget *editor,const QStyleOptionViewItem &option, const QModelIndex &index) const {editor->setGeometry(option.rect);
}

3. QListView 应用

在这里插入图片描述

3.1 widget.h

#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>
#include <QStringListModel>
#include <QMenu>QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACEclass Widget : public QWidget {Q_OBJECTpublic:Widget(QWidget *parent = nullptr);~Widget();private:void initMenu();private slots:void on_btnAddItem_clicked();void on_btnDeleteItem_clicked();void on_btnInsert_clicked();void on_btnClearAllData_clicked();void on_btnReshow_clicked();void on_showRightMenu(const QPoint& pos);void OnActionDelete();// 链接 listview 的 clicked 信号void on_listView_clicked(const QModelIndex &index);private:Ui::Widget *ui;QStringListModel* m_pStringListModel;QMenu *m_pMenu;
};
#endif // WIDGET_H

3.2 widget.cpp

#include "widget.h"
#include "ui_widget.h"
#include <QMenu>Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) {ui->setupUi(this);this->setWindowTitle(u8"QListView使用教程");QStringList strList;strList << u8"北京" << u8"上海" << u8"深圳" << u8"广东"<< u8"南京" << u8"苏州" << u8"西安";// 创建数据模型m_pStringListModel = new QStringListModel(this);// 为模型设置 StringList,会导入 StringList 的内容m_pStringListModel->setStringList(strList);// 为 listView 设置数据模型ui->listView->setModel(m_pStringListModel);// 设置 listview 编辑属性// 双击与选择//ui->listView->setEditTriggers(QAbstractItemView::DoubleClicked | QAbstractItemView::SelectedClicked);initMenu();// listview 右键菜单ui->listView->setContextMenuPolicy(Qt::CustomContextMenu);connect(ui->listView, &QListView::customContextMenuRequested, this, &Widget::on_showRightMenu);
}Widget::~Widget() {delete ui;
}// 添加 item
void Widget::on_btnAddItem_clicked() {// 在尾部插入一空行, 不添加就把最后一行给替换了m_pStringListModel->insertRow(m_pStringListModel->rowCount());// 获取最后一行QModelIndex index = m_pStringListModel->index(m_pStringListModel->rowCount() - 1, 0);m_pStringListModel->setData(index,"new item", Qt::DisplayRole);  // 设置显示文字// 设置新添加的行选中ui->listView->setCurrentIndex(index);
}// 删除选中的项
void Widget::on_btnDeleteItem_clicked() {// 获取当前选中的 modelIndexQModelIndex index = ui->listView->currentIndex();// 删除当前行m_pStringListModel->removeRow(index.row());
}// 插入一项
void Widget::on_btnInsert_clicked() {// 获取选中 model IndexQModelIndex index=ui->listView->currentIndex();// 在当前行的前面插入一行m_pStringListModel->insertRow(index.row());m_pStringListModel->setData(index, "inserted item", Qt::DisplayRole);ui->listView->setCurrentIndex(index);
}// 回显 listview数据
void Widget::on_btnReshow_clicked() {// 获取数据模型的 StringListQStringList tmpList = m_pStringListModel->stringList();ui->textEdit->clear();  // 文本框清空for (int i = 0; i < tmpList.count(); i++) {// 显示数据模型的 StringList()返回的内容ui->textEdit->append(tmpList.at(i));}
}// 清除所有数据
void Widget::on_btnClearAllData_clicked() {m_pStringListModel->removeRows(0, m_pStringListModel->rowCount());
}void Widget::initMenu() {m_pMenu = new QMenu(ui->listView);QAction *pAc1 = new QAction(u8"删除", ui->listView);QAction *pAc2 = new QAction(u8"插入", ui->listView);QAction *pAc3 = new QAction(u8"置顶", ui->listView);QAction *pAc4 = new QAction(u8"排到最后", ui->listView);m_pMenu->addAction(pAc1);m_pMenu->addAction(pAc2);m_pMenu->addAction(pAc3);m_pMenu->addAction(pAc4);// 注意在 exec 前链接信号槽,因为 exec 会阻塞主线程,// 如果 connect 写在 exec 代码之后,信号槽将无法链接connect(pAc1, &QAction::triggered, this, &Widget::OnActionDelete);
}void Widget::on_showRightMenu(const QPoint& pos) {if (!((ui->listView->selectionModel()->selectedIndexes()).empty())) {m_pMenu->exec(QCursor::pos());  // 在当前鼠标位置显示}
}void Widget::OnActionDelete() {// 获取当前 modelIndexQModelIndex index = ui->listView->currentIndex();// 删除当前行m_pStringListModel->removeRow(index.row());
}void Widget::on_listView_clicked(const QModelIndex &index) {ui->textEdit->clear();  // 文本框清空// 显示 QModelIndex 的行、列号ui->textEdit->append(QString::asprintf(u8"当前项:row=%d, column=%d",index.row(), index.column()));
}

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

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

相关文章

集合的自反关系和对称关系

集合的自反关系和对称关系 一&#xff1a;集合的自反关系1&#xff1a;原理&#xff1a;2&#xff1a;代码实现 二&#xff1a;对称关系1&#xff1a;原理&#xff1a;2&#xff1a;代码实现 三&#xff1a;总结 一&#xff1a;集合的自反关系 1&#xff1a;原理&#xff1a; …

简单但好用:4种Selenium截图方法了解一下!

前言 我们执行UI自动化操作时&#xff0c;大多数时间都是不在现场的&#xff0c;出现错误时&#xff0c;没有办法第一时间查看到&#xff0c;这时我们可以通过截图当时出错的场景保存下来&#xff0c;后面进行查看报错的原因&#xff0c;Selenium中提供了几种截图的方法&#x…

OpenAI 董事会与 Sam Altman 讨论重返 CEO 岗位事宜

The Verge 援引多位知情人士消息称&#xff0c;OpenAI 董事会正在与 Sam Altman 讨论他重新担任首席执行官的可能性。 有一位知情人士表示&#xff0c;Altman 对于回归公司一事的态度暧昧&#xff0c;尤其是在他没有任何提前通知的情况下被解雇后。他希望对公司的治理模式进行重…

hisi芯片常见专有名词总结SVP MPP NNIE ACL

1.SVP&#xff1a; Smart Vision Platform是海思媒体处理芯片智能视觉异构加速平台。该平台包含了 CPU、DSP、NNIE(Neural Network Inference Engine)等多个硬件处理单元和运行在这些 硬件上 SDK 开发环境&#xff0c;以及配套的工具链开发环境。 不同芯片下的 SVP 硬件资源…

趣学python编程(七、实现个小网站如此简单 web.py使用介绍)

这里先拿一个小网站的例子来举例&#xff0c;保持好奇心就可以了。因为兴趣才是最好的老师&#xff0c;它能激发人内在的行动力。这里介绍个使用web.py轻量级框架实现的一个小网站&#xff0c;可以看到实现个小网站并不难。python都能用来干什么&#xff1f;那么网站就是它众多…

武汉站--ChatGPT/GPT4科研技术应用与AI绘图及论文高效写作

2023年随着OpenAI开发者大会的召开&#xff0c;最重磅更新当属GPTs&#xff0c;多模态API&#xff0c;未来自定义专属的GPT。微软创始人比尔盖茨称ChatGPT的出现有着重大历史意义&#xff0c;不亚于互联网和个人电脑的问世。360创始人周鸿祎认为未来各行各业如果不能搭上这班车…

执行npm的时候报权限问题的解决方案

我们在执行npm操作的过程中&#xff0c;会出现以下权限问题&#xff0c;解决方案: 管理员身份 运行cmd 切换目录到要执行命令的文件下 再进行npm操作即可

idea一键打包docker镜像并推送远程harbor仓库的方法(包含spotify和fabric8两种方法)--全网唯一正确,秒杀99%水文

我看了很多关于idea一键打包docker镜像并推送harbor仓库的文章&#xff0c;不论国内国外的&#xff0c;基本上99%都是瞎写的&#xff0c; 这些人不清楚打包插件原理&#xff0c;然后就是复制粘贴一大篇&#xff0c;写了一堆垃圾&#xff0c;然后别人拿来也不能用。 然后这篇文…

下厨房网站月度最佳栏目菜谱数据获取及分析PLus

目录 概要 源数据获取 写Python代码爬取数据 Scala介绍与数据处理 1.Sacla介绍 2.Scala数据处理流程 数据可视化 最终大屏效果 小结 概要 本文的主题是获取下厨房网站月度最佳栏目近十年数据&#xff0c;最终进行数据清洗、处理后生成所需的数据库表&#xff0c;最终进…

丐版设备互联方案:安卓linux互联局域网投屏,文件共享,共享剪切板

华为&#xff0c;苹果&#xff0c;甚至小米最近也推出了澎湃&#xff2f;&#xff33;&#xff0c;发现实在是太方便了&#xff0c;当然这些对硬件&#xff0c;系统的要求还是比较高&#xff0c;我用的主力机是小米&#xff11;&#xff12;pro和ubuntu&#xff0c;win双系统也…

Tomcat 9.0.54源码环境搭建

一. 问什么要学习tomcat tomcat是目前非常流行的web容器&#xff0c;其性能和稳定性也是非常出色的&#xff0c;学习其框架设计和底层的实现&#xff0c;不管是使用、性能调优&#xff0c;还是应用框架设计方面&#xff0c;肯定会有很大的帮助 二. 运行源码 1.下载源…

PyTorch中并行训练的几种方式

❤️觉得内容不错的话&#xff0c;欢迎点赞收藏加关注&#x1f60a;&#x1f60a;&#x1f60a;&#xff0c;后续会继续输入更多优质内容❤️ &#x1f449;有问题欢迎大家加关注私戳或者评论&#xff08;包括但不限于NLP算法相关&#xff0c;linux学习相关&#xff0c;读研读博…

dump备份命令

dump备份文件系统&#xff0c;或者目录 文件系统有等级划分&#xff0c;0为全部备份&#xff0c;1.针对上一次有变动的文件进行备份&#xff0c;以此类崔 目录备份&#xff1a;只有一个等级0&#xff0c; 针对文件系统类型有要求ext2&#xff0c;ext3&#xff0c;如果是其他…

pygame播放视频并实现音视频同步

一、前言 在我接触pygame时最新的pygame已经不支持movie模块&#xff0c;这就导致在pygame播放视频变成一个问题&#xff0c;网上搜了下解决方案有两个&#xff1a; 一是使用opencv播放视频&#xff0c;再结合pygame.mixer来播放音频 二是使用moviepy播放视频&#xff0c;再…

K8S1.23.5部署(此前1.17版本步骤囊括)及问题记录

查看你对应命名空间下的pod的重启次数 kubectl get pods --namespace<your-namespace> <your-pod-name> -ojsonpath{.status.containerStatuses[*].restartCount} 应版本需求&#xff0c;升级容器版本为1.23.5 kubernetes组件 一个kubernetes集群主要由控制节…

3.9-Dockerfile实战

这一节介绍怎么将python程序打包成一个image&#xff0c;然后运行为一个container。 首先&#xff0c;创建/home/python/目录 mkdir /home/python/ 然后创建app.py文件。 vim app.py app.py文件的内容如下&#xff1a; from flask import Flaskapp Flask(__name__)app.route(…

【面试经典150 | 数学】Pow(x, n)

文章目录 写在前面Tag题目来源题目解读解题思路方法一&#xff1a;快速幂-递归方法二&#xff1a;快速幂-迭代 其他语言python3 写在最后 写在前面 本专栏专注于分析与讲解【面试经典150】算法&#xff0c;两到三天更新一篇文章&#xff0c;欢迎催更…… 专栏内容以分析题目为主…

如何在3dMax中使用Python返回场景内所有对象的列表?

如何在3dMax中使用Python返回场景内所有对象的列表&#xff1f; 3dMax支持开发基于Python的工具和扩展&#xff0c;因此可以对其进行自定义并将其集成到现代数字内容创建管道中。为此&#xff0c;3dMax集成了Python 3.9解释器&#xff0c;并通过pymxs API公开了3dMax的丰富功能…

【广州华锐互动VRAR】VR元宇宙技术在气象卫星知识科普中的应用

随着科技的不断发展&#xff0c;虚拟现实&#xff08;VR&#xff09;和元宇宙等技术正逐渐走进我们的生活。这些技术为我们提供了一个全新的互动平台&#xff0c;使我们能够以更加直观和生动的方式了解和学习各种知识。在气象天文领域&#xff0c;VR元宇宙技术的应用也日益显现…

基于安卓android微信小程序美容理发店预约系统app

项目介绍 为美容院设计一个系统以减少员工的工作量就成为了想法的初始状态。紧接着对美容院进行进一步的调查发现我的想法已然落后。基本上每个美容院都以有了自己的信息系统&#xff0c;并且做的已经较完善了。 在这时我突然想到&#xff0c;现在关注美容养生的人越来越多&am…