QDateTime :: secsTo为不同的QDateTime返回相同的值

时间:2017-08-04 20:27:18

标签: c++ qt qt5 qdatetime

我最近写了一个秒表并注意到QDateTime::secsTo的一些奇怪的行为。我不确定这是一个错误还是一个功能(或者我只是做了一个糟糕的实现; - )。

我的秒表代码可以剥离到这个最小的例子,以产生可疑的结果(至少在使用Qt 5.7.1的Linux上):

StopWatch.h

#ifndef STOPWATCH_H
#define STOPWATCH_H

#include <QDialog>
#include <QDateTime>

class QTimer;

class StopWatch : public QDialog
{
    Q_OBJECT

public:
    explicit StopWatch(QWidget *parent);

private slots:
    void update();

private:
    QTimer *m_timer;
    QDateTime m_targetTime;
};

#endif // STOPWATCH_H

StopWatch.cpp

#include "StopWatch.h"
#include <QDebug>
#include <QTimer>

StopWatch::StopWatch(QWidget *parent) : QDialog(parent)
{
    m_timer = new QTimer(this);
    m_timer->setTimerType(Qt::PreciseTimer);
    connect(m_timer, &QTimer::timeout, this, &StopWatch::update);
    m_targetTime = QDateTime::currentDateTime().addSecs(10);
    m_timer->start(1000);
}

void StopWatch::update()
{
    QDateTime currentDateTime = QDateTime::currentDateTime();
    qint64 secondsLeft = currentDateTime.secsTo(m_targetTime);
    qDebug() << secondsLeft;
}

这是输出的一部分(

4
3
2
1
0
0
-1
-2
-3
-4

所以,我们在QDateTime::secsTo输出0QDateTime 输出QDateTime一秒钟。

我通过做

解决了这个问题
if (currentDateTime <= m_targetTime) {
    secondsLeft++;
}

但我不理解这种行为。为什么会这样?

2 个答案:

答案 0 :(得分:4)

查看源代码http://code.qt.io/cgit/qt/qtbase.git/tree/src/corelib/tools/qdatetime.cpp

int QTime::secsTo(const QTime &t) const
{
    if (!isValid() || !t.isValid())
        return 0;

    // Truncate milliseconds as we do not want to consider them.
    int ourSeconds = ds() / 1000;
    int theirSeconds = t.ds() / 1000;
    return theirSeconds - ourSeconds;
}

看起来它需要两个小于1000的正整数,将它们除以1000,然后将它们相互减去。如果使用mSecsTo(),则不会出现此问题。

答案 1 :(得分:2)

这是一个四舍五入的问题。 secsTo函数没有舍入到最接近的整数,只是丢弃小数部分(这是编译器默认执行的操作):

int QTime::secsTo(const QTime &t) const
{
    if (!isValid() || !t.isValid())
        return 0;

    // Truncate milliseconds as we do not want to consider them.
    int ourSeconds = ds() / 1000;
    int theirSeconds = t.ds() / 1000;
    return theirSeconds - ourSeconds;
}

或4.x版本:

int QTime::secsTo(const QTime &t) const
{
    return (t.ds() - ds()) / 1000;
}

所以你可能会看到:

 4.8 -> 4
 3.8 -> 3
 2.8 -> 2
 1.8 -> 1
 0.8 -> 0
-0.2 -> 0
-1.2 -> -1
-2.2 -> -2
-3.2 -> -3
-4.2 -> -4

对于预期结果,请使用以下内容:

qint64 secondsLeft = qRound64(currentDateTime.msecsTo(m_targetTime) / 1000.0);