当前位置:网站首页>QT handy notes (II) edit control and float, qstring conversion
QT handy notes (II) edit control and float, qstring conversion
2022-07-26 09:33:00 【Flying 123_ one hundred and twenty-three】
1、Edit Control
QString qstr = ui->lineEdit->text();// Get current Edit Value on , Assign to qstr.
ui->lineEdit->setText(qstr);// Set up Edit The value on is qstr
2、QString Transfer to other types
QString qstr = “123”;// Definition qstr Value
float valFlo = qstr.toFloat();// take QString convert to float
int valInt = qstr.toInt();// take QString convert to int
double valDou = qstr.toDouble();// take QString convert to doublr
String valStr = qstr.toStdString;// take QString convert to string
3、 Other types of transfer QString
QString qstr;
float valFlo = 11.1111;
qstr = QString::asprintf("%.2f", value);//float turn QString And keep two decimal places ( Retain x Decimal place , The first is %.xf)
边栏推荐
猜你喜欢
随机推荐
2019 ICPC Asia Yinchuan regional (water problem solution)
大二上第五周学习笔记
PHP一次请求生命周期
正则表达式
Table extraction for opencv table recognition (2)
服务器、客户端双认证
CSV data file settings of JMeter configuration components
Wechat applet avatarcropper avatar clipping
PMM(Percona Monitoring and Management )安装记录
TableviewCell高度自适应
Login module use case writing
微信小程序学习笔记1
asp. Net using redis cache
小程序纪录
EOJ 2020 1月月赛 E数的变换
选择器的使用
mysql5.7.25主从复制(单向)
ie7设置overflow属性失效解决方法
Process32First返回false,错误x信息24
微信小程序AvatarCropper 头像裁剪








