爪哇。检查时间范围。如何?
例如,我的输入参数格式如下:“04:00-06:00
”或“23:00-24:00
”。参数类型 - String
。
在我的方法中,我必须检查输入参数中的时间范围不是在当前时间之前。我怎样才能做到呢?
更多详情:
输入时间范围:“
12:00-15:00
”当前时间:
16:00
。
在这种情况下,方法必须返回false
。
另一个例子:
输入时间范围:“
10:30-12:10
”当前时间:
09:51
。
方法必须返回true
。
你能给我一些想法或算法吗?我怎样才能实现这个方法?
For example, I have input parameter this format: "04:00-06:00
" or "23:00-24:00
". Type of parameter - String
.
And in my method I must check, that time range in input parameter NOT before current time. How I can do it?
More details:
input time range: "
12:00-15:00
"current time:
16:00
.
In this case, method must return false
.
Another example:
input time range: "
10:30-12:10
"current time:
09:51
.
method must return true
.
Can you please give me some idea or algorithm? How I can implement this method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您可能应该学习使用 Joda 时间。
也就是说,由于时间都是用零填充的,因此您可以仅按词法比较字符串。
在格式错误的输入上快速失败是一个很好的做法。
然后在
inRange
的顶部放置一个断言:编辑:
如果您确实需要将当前时间表示为
Date
,那么您应该这样比较:使用 < code>Range.valueOf 要从
String
进行转换,请使用您喜欢的任何日历实现将您的Date
转换为您喜欢的任何时区午夜以来的分钟数,然后使用范围.包含
。First off, you should probably just learn to use Joda time.
That said, since the times are all zero padded, you can just compare strings lexically.
It's good practice to fail fast on malformed inputs.
and then put an assert at the top of
inRange
:EDIT:
If you really need to represent the current time as a
Date
, then you should compare it this way:Use
Range.valueOf
to convert from aString
, convert yourDate
to a number of minutes since midnight in whatever timezone you like using whatever calendar implementation you like, and then useRange.contains
.