gpt4 book ai didi

c++ - 如何在 QString 中使用整数值

转载 作者:行者123 更新时间:2023-11-28 07:44:54 25 4
gpt4 key购买 nike

我有一个程序,我想在 Qlabel 中使用 QString:

      text1->setText(QString("Actual value of Threshold: %1 mV").arg(slider->value()*2.745098));

这很好用,但我想得到像 100 mV 这样的整数值而不是 100.84654mV 我该怎么做。

silder->value();

返回一个整数值。和类型转换像:

 text1->setText(QString("Actual value of Threshold: %1 mV").arg((int)slider->value()*2.745098));

最佳答案

您应该将计算值转换为 int。

text1->setText(QString("Actual value of Threshold: %1 mV").arg((int)(slider->value()*2.745098)));

关于c++ - 如何在 QString 中使用整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15091318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com