使用AtomicLong生成ID,如何每天从0开始

发布于 2024-12-27 14:57:51 字数 101 浏览 1 评论 0原文

我正在使用 java.util.concurrent.atomic.AtomicLong 类来生成用于 id 生成的序列号。我需要每天从 1 开始这个数字,我可以使用哪些可用的逻辑、方法?

I am using java.util.concurrent.atomic.AtomicLong class to generate sequence numbers for id generation. I need to start this number from 1 each day what are the available logic, methods which I can use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

差↓一点笑了 2025-01-03 14:57:51

这是关于如何使用 Joda Time 开始一天的答案。然后使用方法 AtomicLong#set(long) 重置该值。

Here's an answer on how to get the beginning of a day using Joda Time. Then use the method AtomicLong#set(long) to reset the value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文