gpt4 book ai didi

java - 如何理解Ehcache Elements中的 "CreationTime"和其他时间?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:08:22 27 4
gpt4 key购买 nike

Ehcache Api for Element , javadocs 没有提供关于如何表示不同时间的信息。它们很长。

假设这是毫秒瞬间是否安全?我多次使用 JodaTime 库,所以如果我以这种方式创建 DateTime,它会准确吗?

DateTime time = new DateTime(element.getCreationTime());

最佳答案

是的,element.getCreationTime()(以及 Element 类的其他 time() 方法)返回的“long”是自称为“纪元”的标准基准时间以来指定的毫秒数。

因此“new java.util.Date(element.getCreationTime())”或“new org.joda.time.DateTime(element.getCreationTime())”的工作原理相同。

不过你应该能够很容易地测试它......例如,我会测试并确保 element.getCreationTime() 在使用 java.util.Date 和 org.joda.time.DateTime 并将它们都打印到屏幕时显示相同

希望对您有所帮助。

关于java - 如何理解Ehcache Elements中的 "CreationTime"和其他时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17753221/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com