数字除法
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种截断到 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.