溫馨提示×

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

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

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

發(fā)布時(shí)間:2022-05-17 10:34:33 來源:億速云 閱讀:869 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換”吧!

主要使用QT中的三個(gè)方法。

  • 第一個(gè)是QString::number(int n, int base = 10);

  • 第二個(gè)是QString::setNum(short n, int base = 10);

  • 第三個(gè)是int QString::toInt(bool *ok = nullptr, int base = 10) const

這三個(gè)方法默認(rèn)值都是十進(jìn)制。

先上效果圖,最后會(huì)附上源碼:

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

接下來開始代碼實(shí)現(xiàn):

首先打開QT->新建文件或項(xiàng)目,然后跟著圖中標(biāo)注進(jìn)行下一步

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

文件名和路徑自己設(shè)置就可。

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

一直點(diǎn)下一步;

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

一直點(diǎn)下一步。創(chuàng)建成功先點(diǎn)綠色箭頭運(yùn)行一下。

接著重頭戲來了?。。?!

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

 如圖所示,同時(shí)還會(huì)在.cpp文件中添加函數(shù)定義:

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

 所要實(shí)現(xiàn)的功能是,當(dāng)點(diǎn)擊對(duì)應(yīng)“轉(zhuǎn)換為其他進(jìn)制”的按鈕時(shí),獲取對(duì)應(yīng)輸入框的內(nèi)容,然后把內(nèi)容轉(zhuǎn)換為對(duì)應(yīng)進(jìn)制。

主要hao

//QString::number()和setNum()都可以轉(zhuǎn)換
void MainWindow::on_btn1_clicked()
{//十進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->shi->text();
    int value = str.toInt();//十進(jìn)制,toInt()默認(rèn)是10進(jìn)制數(shù)
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = str.setNum(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
 
    str = str.setNum(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn2_clicked()
{//二進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->er->text();//二進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 2);//以二進(jìn)制數(shù)讀入,讀取成功ok=true;
    qDebug() << "ok=" << ok;
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = QString::number(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
 
    str = QString::number(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn3_clicked()
{//十六進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->shiliu->text();//十六進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 16);//以十六進(jìn)制數(shù)讀入
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = QString::number(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn4_clicked()
{//八進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->ba->text();//八進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 8);//以八進(jìn)制數(shù)讀入
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = QString::number(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
}

 好啦,到這里,代碼就結(jié)束啦,是不是感覺很簡單?!

最后附上源碼,親測(cè)可運(yùn)行,如果你在運(yùn)行時(shí),出現(xiàn)問題,可以留言。

.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}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

頭文件.h源碼

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
 
#include <QMainWindow>
 
QT_BEGIN_NAMESPACE
namespace 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"
 
#include <QApplication>
 
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

.cpp源碼

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
 
MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    this->setWindowTitle("各種進(jìn)制之間相互轉(zhuǎn)換");
}
 
MainWindow::~MainWindow()
{
    delete ui;
}
 
//QString::number()和setNum()都可以轉(zhuǎn)換
void MainWindow::on_btn1_clicked()
{//十進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->shi->text();
    int value = str.toInt();//十進(jìn)制,toInt()默認(rèn)是10進(jìn)制數(shù)
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = str.setNum(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
 
    str = str.setNum(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn2_clicked()
{//二進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->er->text();//二進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 2);//以二進(jìn)制數(shù)讀入,讀取成功ok=true;
    qDebug() << "ok=" << ok;
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = QString::number(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
 
    str = QString::number(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn3_clicked()
{//十六進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->shiliu->text();//十六進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 16);//以十六進(jìn)制數(shù)讀入
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = QString::number(value,8);//轉(zhuǎn)為八進(jìn)制
    ui->ba->setText(str);
}
 
void MainWindow::on_btn4_clicked()
{//八進(jìn)制轉(zhuǎn)為其他進(jìn)制
    QString str = ui->ba->text();//八進(jìn)制
    bool ok;
    int value = str.toInt(&ok, 8);//以八進(jìn)制數(shù)讀入
 
    str = QString::number(value,10);//轉(zhuǎn)為十進(jìn)制
    ui->shi->setText(str);
 
    str = str.setNum(value,2);//轉(zhuǎn)為二進(jìn)制
    ui->er->setText(str);
 
    str = QString::number(value,16).toUpper();//轉(zhuǎn)為十六進(jìn)制
    ui->shiliu->setText(QString("0x%1").arg(str));
}

運(yùn)行后的界面如下:

QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換

感謝各位的閱讀,以上就是“QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)QT怎么實(shí)現(xiàn)二、八、十六進(jìn)制之間的轉(zhuǎn)換這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

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

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

qt
AI