[QT 강좌] int to String [QString::number()]
반응형
QT에서 int 값을 스트링으로 변경하는 API
1 2 3 4 5 6 | void MainWindow::on_pushButton_clicked() { int testValue = 100; ui->textBrowser->setText(QString::number(testValue)); } | cs |
QString 의 number() 를 사용하면 된다.
http://doc.qt.io/qt-5/qstring.html
The QString class provides a Unicode character string. More...
Header: | #include <QString> |
qmake: | QT += core |
QString | number(long n, int base = 10) |
QString | number(uint n, int base = 10) |
QString | number(int n, int base = 10) |
QString | number(ulong n, int base = 10) |
QString | number(qlonglong n, int base = 10) |
QString | number(qulonglong n, int base = 10) |
QString | number(double n, char format = 'g', int precision = 6) |
반응형
'IT > QT' 카테고리의 다른 글
[QT 강좌] Hello World project 만들기 - QT Creator for Ubuntu (0) | 2016.11.23 |
---|---|
[QT 강좌] QT Creator 다운로드 및 설치, 환경 설정 [For Ubuntu] (0) | 2016.11.23 |
[QT 강좌] QT 개발에 필요한 도구들 [IDE / Utils] (0) | 2016.11.23 |
QT 관련 사이트 [업데이트 중] (0) | 2016.11.23 |
[QT 강좌] Hello World project 만들기 - QT Creator for Window 10 (0) | 2016.11.23 |