使用模量和可能的舍入错误来计算时间



我从数据库中以几秒钟的速度接收一个时间值,我想将其计算为可读的时间。这些是消息的总活跃时间,因此我不必考虑任何leap年。

我正在计算超过24小时的几秒钟的时间,因此hhh:mm:ss。我用它来格式化现场图表中图表上的la子。在我的代码中,我使用以下代码对其进行计算:

public Func<double, string> Formatter { get; set; }
Formatter = value => (((value - (value % 3600)) / 3600) + ":" + (((value % 3600) - (value % 60)) / 60) + ":" + (value % 60));

这可以正常工作,但有时会导致:

222:3:4

但是我想要的是:

222:03:04

我找到了以下代码来制作string.Format,但是当我使用Func<>时,我不知道该如何应用:

static string Method1(int secs)
{
    int hours = secs / 3600;
    int mins = (secs % 3600) / 60;
    secs = secs % 60;
    return string.Format("{0:D2}:{1:D2}:{2:D2}", hours, mins, secs);
}

当我使用public Func<double, string>在24小时内计算时间时,我该如何应用此string.Format

您可以在 public Func<double, string>中使用string.format,只需将值应用于参数而不是单个字符串:

Formatter = value => string.Format("{0:D2}:{1:D2}:{2:D2}", (int)(value - (value % 3600)) / 3600, (int)((value % 3600) - (value % 60)) / 60, (int)value % 60);

另外,如前所述,使用内置功能可能更好。

您应该使用标准的时间板格式器之一。可能是" g":

static string Method1(int secs)
{
    var ts = new TimeSpan.FromSeconds(secs);
    return ts.Format('g');
}

https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings?view=netframework-4.7.2

相关内容

  • 没有找到相关文章