问题
How to get the milliseconds from now()?
Dates.format(now(), "HH:MM:SS.sss")
gives
"18:32:11.000"
where the .sss
part is always .000
.
回答1:
now()
does't record milliseconds:
julia> @show x=now(); @show Dates.millisecond(x); @show Dates.second(x)
x = now() = 2015-09-04T19:09:32
Dates.millisecond(x) = 0
Dates.second(x) = 32
32
回答2:
From your other question I found your comment:
dt = Dates.unix2datetime(time())
Dates.millisecond(dt)
Which does the business. Cheers.
来源:https://stackoverflow.com/questions/32407509/how-to-get-the-milliseconds-from-now-in-julia-0-4-pre