gpt4 book ai didi

c++ - 如何很好地将 "cast"qint64 转换为 QProgressBar 的 int

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:25:30 33 4
gpt4 key购买 nike

我正在使用 QFtp(是的..我知道)并且一切正常。

使用他们自己示例中的代码作为指导。

http://doc.qt.io/archives/qt-4.7/network-qftp-ftpwindow-cpp.html

我遇到的唯一问题是在发送(或接收)大文件(比如 3 GB)时进度条出现故障。

这是由于从 qint64 到 int 的转换:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
qint64 totalBytes)
{
progressDialog->setMaximum(totalBytes);
progressDialog->setValue(readBytes);
}

我想知道在谷歌搜索大约一个小时并通过确保我不会超出范围来保持它的“安全”之后,最好的处理方法是什么。

while (totalBytes > 4294967295UL)
{
totalBytes = totalBytes/4294967295UL;
readBytes = readBytes/4294967295UL;
}

但这“感觉”不对。 .

最佳答案

您可以让进度条以百分比形式显示进度:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
qint64 totalBytes)
{
progressDialog->setMaximum(100);
progressDialog->setValue((qint)((readBytes * 100) / totalBytes));
}

关于c++ - 如何很好地将 "cast"qint64 转换为 QProgressBar 的 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4931780/

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