标签:http 数据 问题 div 应用 程序 应用程序 ef
在用Qt开发应用程序时有时候需要将float类型转换为unsigned short类型的。如果进行强制类型转换,那么会出现精度损失的问题,使数据变得不正确。那么可以通过先将float类型的转换为QString类型的,QString sNum = QString::number(fNum);然后调用sNum.toUShort()函数就可以将float转换为unsigned short类型。Qt中将float转换成unsigned short类型,布布扣,bubuko.com
标签:http 数据 问题 div 应用 程序 应用程序 ef
原文地址:http://www.cnblogs.com/superit/p/3873408.html