问题描述
有没有办法使用 java.util.concurrent.TimeUnit 将毫秒转换为分钟?
这个答案 似乎建议您可以使用 TimeUnit.MILLISECONDS.toMinutes()
方法,并且文档建议您可以使用 TimeUnit.MILLISECONDS.convert()
使用 TimeUnit.MINUTES
的方法 - 问题是 TimeUnit.MINUTES
或 TimeUnit.MILLISECONDS.toMinutes()
似乎都不存在.>
我在这里遗漏了什么吗?
我相信 TimeUnit 可能在 1.6 中增加了分钟:1.6 文档,1.5 文档
Is there a way to convert milliseconds to minutes using java.util.concurrent.TimeUnit?
This answer seems to suggest that you can use a TimeUnit.MILLISECONDS.toMinutes()
method, and the documentation suggests that you could use the TimeUnit.MILLISECONDS.convert()
method with TimeUnit.MINUTES
- the problem is that neither TimeUnit.MINUTES
or TimeUnit.MILLISECONDS.toMinutes()
seem to actually exist.
Am I missing something here?
I believe TimeUnit might have added minutes in 1.6: 1.6 docs, 1.5 docs
这篇关于Android java.util.concurrent.TimeUnit 将毫秒转换为分钟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!