您现在的位置是:网站首页> C/C++

QString的数据转换

  • C/C++
  • 2022-03-23
  • 819人已阅读
摘要

QString转为其他类型

toInt toLong toShort toUInt toULong toDouble  toFloat 

数字转串

str=QString::asprintf("%.2f",total);

str=str.sprintf(".2f",total);

格式换串

QString test="womeng";

QString v;

v=QString("%1").arg(test);







Top