我试图了解几分之一秒。我找到了fractional second,here

double uhd::time_spec_t::get_frac_secs  (   void        )    const
     Get the fractional part of the time in seconds.

Returns:
     the fractional seconds


小数秒精确地表示为两倍?有人可以给我一个示例值,它如何转换为秒?

最佳答案

小数秒是时间的一部分,不是整数。因此,如果您有类似12345678.9的时间,则小数秒为0.9

09-07 06:52