本文介绍了获取Unix/Epoch时间为Int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

haskell中是否存在以秒/毫秒为单位的历元时间函数?

Is there a function in haskell for epoch time in seconds / milliseconds ?

也许类似于Java的

System.currentTimeMillis();

Int还是Integer?

推荐答案

是.

getCurrentTime :: IO UTCTime

UNIX时代时间检索为Int:

UNIX epoch time could be retrieved as Int like that:

> :m + Data.Time System.Locale Control.Applicative
> epoch_int <- (read <$> formatTime defaultTimeLocale "%s" <$> getCurrentTime) :: IO Int
> epoch_int
1375025861

UPD :正如其他用户所注意到的那样,有更简单的方法可以做到这一点:

UPD: as other users noticed, there is much more simple way to do that:

> :m + Data.Time.Clock.POSIX
> round `fmap` getPOSIXTime 
1375040716
it :: Integer

这篇关于获取Unix/Epoch时间为Int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 01:26