QT实现二、八、十六进制之间的转换
【QT实现二、八、十六进制之间的转换】主要使用QT中的三个方法。
- 第一个是QString::number(int n, int base = 10);
- 第二个是QString::setNum(short n, int base = 10);
- 第三个是int QString::toInt(bool *ok = nullptr, int base = 10) const
先上效果图,最后会附上源码:
文章图片
接下来开始代码实现:
首先打开QT->新建文件或项目,然后跟着图中标注进行下一步
文章图片
文件名和路径自己设置就可。
文章图片
一直点下一步;
文章图片
一直点下一步。创建成功先点绿色箭头运行一下。
接着重头戏来了!!!!
文章图片
文章图片
如图所示,同时还会在.cpp文件中添加函数定义:
文章图片
所要实现的功能是,当点击对应“转换为其他进制”的按钮时,获取对应输入框的内容,然后把内容转换为对应进制。
主要hao
//QString::number()和setNum()都可以转换void MainWindow::on_btn1_clicked(){//十进制转为其他进制QString str = ui->shi->text(); int value = https://www.it610.com/article/str.toInt(); //十进制,toInt()默认是10进制数 str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = str.setNum(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); str = str.setNum(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn2_clicked(){//二进制转为其他进制QString str = ui->er->text(); //二进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 2); //以二进制数读入,读取成功ok=true; qDebug() <<"ok=" << ok; str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = QString::number(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); str = QString::number(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn3_clicked(){//十六进制转为其他进制QString str = ui->shiliu->text(); //十六进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 16); //以十六进制数读入 str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = QString::number(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn4_clicked(){//八进制转为其他进制QString str = ui->ba->text(); //八进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 8); //以八进制数读入 str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = QString::number(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); }
好啦,到这里,代码就结束啦,是不是感觉很简单?!
最后附上源码,亲测可运行,如果你在运行时,出现问题,可以留言。
.pro 文件源码
QT+= core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += c++11 # The following define makes your compiler emit warnings if you use# any Qt feature that has been marked deprecated (the exact warnings# depend on your compiler). Please consult the documentation of the# deprecated API in order to know how to port your code away from it.DEFINES += QT_DEPRECATED_WARNINGS # You can also make your code fail to compile if it uses deprecated APIs.# In order to do so, uncomment the following line.# You can also select to disable deprecated APIs only up to a certain version of Qt.#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000# disables all the APIs deprecated before Qt 6.0.0 SOURCES += \main.cpp \mainwindow.cpp HEADERS += \mainwindow.h FORMS += \mainwindow.ui # Default rules for deployment.qnx: target.path = /tmp/$${TARGET}/binelse: unix:!android: target.path = /opt/$${TARGET}/bin!isEmpty(target.path): INSTALLS += target
头文件.h源码
#ifndef MAINWINDOW_H#define MAINWINDOW_H #includeQT_BEGIN_NAMESPACEnamespace Ui { class MainWindow; }QT_END_NAMESPACE class MainWindow : public QMainWindow{Q_OBJECT public:MainWindow(QWidget *parent = nullptr); ~MainWindow(); private slots: void on_btn1_clicked(); void on_btn2_clicked(); void on_btn3_clicked(); void on_btn4_clicked(); private:Ui::MainWindow *ui; }; #endif // MAINWINDOW_H
main.cpp源码
#include "mainwindow.h" #includeint main(int argc, char *argv[]){QApplication a(argc, argv); MainWindow w; w.show(); return a.exec(); }
.cpp源码
#include "mainwindow.h"#include "ui_mainwindow.h"#includeMainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow){ui->setupUi(this); this->setWindowTitle("各种进制之间相互转换"); } MainWindow::~MainWindow(){delete ui; } //QString::number()和setNum()都可以转换void MainWindow::on_btn1_clicked(){//十进制转为其他进制QString str = ui->shi->text(); int value = https://www.it610.com/article/str.toInt(); //十进制,toInt()默认是10进制数 str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = str.setNum(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); str = str.setNum(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn2_clicked(){//二进制转为其他进制QString str = ui->er->text(); //二进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 2); //以二进制数读入,读取成功ok=true; qDebug() <<"ok=" << ok; str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = QString::number(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); str = QString::number(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn3_clicked(){//十六进制转为其他进制QString str = ui->shiliu->text(); //十六进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 16); //以十六进制数读入 str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = QString::number(value,8); //转为八进制ui->ba->setText(str); } void MainWindow::on_btn4_clicked(){//八进制转为其他进制QString str = ui->ba->text(); //八进制bool ok; int value = https://www.it610.com/article/str.toInt(&ok, 8); //以八进制数读入 str = QString::number(value,10); //转为十进制ui->shi->setText(str); str = str.setNum(value,2); //转为二进制ui->er->setText(str); str = QString::number(value,16).toUpper(); //转为十六进制ui->shiliu->setText(QString("0x%1").arg(str)); }
运行后的界面如下:
文章图片
到此这篇关于QT实现二、八、十六进制之间的转换的文章就介绍到这了,更多相关QT进制转换内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- 146、LRU|146、LRU 缓存 | 算法(leetcode,附思维导图 + 全部解法)300题
- nginx|Nginx网络服务
- TS使用
- 基础路径规划算法(Dijikstra、A*、D*)总结
- Java面试题总结(附答案)
- 学一点|原始套接字实现UDP程序
- 读书名言
- 投稿|如祺、曹操出行花式求生
- 二叉树题解--java|二叉树后序遍历(迭代+递归)-java
- mysql|Mysql触发器