4

我想要最简单或最简单的方法,它根据给定的时间返回布尔值(真/假)是在下午 3 点之后还是不考虑日期。

例如:-

   def after_three_pm(time)
     //some code here 
   end

   time= Time.now # Tue Jul 26 11:17:27 +0530 2011  THEN
   after_three_pm(time)  # should return false

   time= Time.now # Tue Jul 26 15:17:27 +0530 2011  THEN
   after_three_pm(time)  #  should return true
4

2 回答 2

9
def after_three_pm(time)
  time.hour >= 15
end

是你所需要的全部。

于 2011-07-26T10:01:25.930 回答
2

您只需要使用“时间”功能:

    Time.now.hour
=> 11

现在你可以根据你想要的时间来评估它。

于 2011-07-26T10:01:20.577 回答