erlang:timestamp() -> Timestamp
OTP 18.0
类型:
Timestamp = timestamp()
timestamp() =
{兆秒::integer() >= 0,
秒::integer() >= 0,
微秒::integer() >= 0}
{兆秒::integer() >= 0,
秒::integer() >= 0,
微秒::integer() >= 0}
返回当前值Erlang系统时间关于格式{MegaSecs, Secs, MicroSecs}
。该格式与
os:timestamp/0
和已弃用的
erlang:now/0
使用。存在的理由erlang:timestamp()
纯粹是为了简化采用此时间戳格式的现有代码的使用。可以使用您选择的时间单位更有效地检索当前的 Erlang 系统时间
erlang:system_time/1
.
erlang:timestamp()
BIF 相当于:
timestamp() ->
ErlangSystemTime = erlang:system_time(microsecond),
MegaSecs = ErlangSystemTime div 1000_000_000_000,
Secs = ErlangSystemTime div 1000_000 - MegaSecs*1000_000,
MicroSecs = ErlangSystemTime rem 1000_000,
{MegaSecs, Secs, MicroSecs}.
然而,它使用的本机实现不会在堆上生成垃圾,并且性能稍好一些。
注意
这次是不是一般情况下单调递增的时间。有关更多信息,请参阅文档时间扭曲模式在用户指南中。
相关用法
- erlang time()用法及代码示例
- erlang titlecase(String :: unicode:chardata())用法及代码示例
- erlang tan用法及代码示例
- erlang tuple_to_list用法及代码示例
- erlang term_to_binary用法及代码示例
- erlang table(Table)用法及代码示例
- erlang term_to_binary(Term)用法及代码示例
- erlang throw(Any)用法及代码示例
- erlang tl(List)用法及代码示例
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代码示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代码示例
- erlang trunc(Number)用法及代码示例
- erlang tuple_size(Tuple)用法及代码示例
- erlang tuple_to_list(Tuple)用法及代码示例
- erlang to_list(Q :: queue(Item))用法及代码示例
- erlang take(Key, Orddict)用法及代码示例
- erlang table(Name)用法及代码示例
- erlang traverse(Name, Fun)用法及代码示例
- erlang take(Key, Map1)用法及代码示例
- erlang to_list(MapOrIterator)用法及代码示例
- erlang take(String, Characters)用法及代码示例
- erlang to_float(String)用法及代码示例
- erlang to_integer(String)用法及代码示例
- erlang to_graphemes(String :: unicode:chardata())用法及代码示例
- erlang trim(String)用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 timestamp() -> Timestamp。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。