QT入門系列(4):QString與int相互轉換方法

QString轉intweb QString a("123"); int b = a.toInt(); qDebug() << b; 輸出結果:123 注意:若是字符串非純數字,最終轉換int的結果爲0svg int轉QStringspa int c = 123; QString d = QString::number(c); qDebug() << d; 輸出結果:"123"code
相關文章
相關標籤/搜索