数字除法

发布于 2024-11-04 09:26:31 字数 209 浏览 0 评论 0原文

我可以在 Timestamp 类中看到,构造函数如下所示:

    public Timestamp(long time) {
    super((time/1000)*1000);
    ....................

我不明白的是,需要将时间除以 1000,然后再乘以 1000。这会产生什么区别?这一段是不是多余了?

I could see in Timestamp class, the constructor goes like:

    public Timestamp(long time) {
    super((time/1000)*1000);
    ....................

What Im not understanding is, what is the need of dividing the time by 1000 and then multiplying again by 1000. What difference will it make? Isn't this piece redundant?

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

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

发布评论

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

评论(1

尝蛊 2024-11-11 09:26:31

这是一种截断到 1000 毫秒的下一个较小倍数(即整秒)的方法。这不一定是最好的方式,但它是一种方式。

That's a way of truncating to the next lower multiple of 1000 milliseconds -- i.e., to the whole second. It's not necessarily the best way, but it's a way.

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