Ruby 提供了許多內(nèi)置的方法來處理日期和時間。以下是一些常用的方法:
current_time = Time.now
current_time.strftime("%Y-%m-%d %H:%M:%S")
current_time.year
current_time.month
current_time.day
current_time.hour
current_time.min
current_time.sec
future_time = current_time + 1.day
past_time = current_time - 1.week
current_time > future_time
current_time < past_time
current_time == future_time
這些是 Ruby 中常用的日期和時間處理方法,可以根據(jù)實際需求選擇合適的方法來處理日期和時間。