Ruby 日期方法问题

发布于 2024-12-02 02:15:39 字数 531 浏览 1 评论 0原文

ruby-1.9.2-p290 :001 > require 'date' => true 
ruby-1.9.2-p290 :002 > date = '01/23/2011'=> "01/23/2011" 
ruby-1.9.2-p290 :003 > Date.strptime(date, "%m/%d/%Y") => 
#<Date: 2011-01-23 (4911169/2,0,2299161)> 
ruby-1.9.2-p290 :004 > Date.mon
NoMethodError: undefined method `mon' for Date:Class
    from (irb):4
    from /Users/noahclark/.rvm/rubies/ruby-1.9.2-p290/bin/irb:16:in `<main>'
ruby-1.9.2-p290 :005 > 

为什么要这样做?我查看了文档, .mon 或 .month 是有效的方法。

提前致谢。

ruby-1.9.2-p290 :001 > require 'date' => true 
ruby-1.9.2-p290 :002 > date = '01/23/2011'=> "01/23/2011" 
ruby-1.9.2-p290 :003 > Date.strptime(date, "%m/%d/%Y") => 
#<Date: 2011-01-23 (4911169/2,0,2299161)> 
ruby-1.9.2-p290 :004 > Date.mon
NoMethodError: undefined method `mon' for Date:Class
    from (irb):4
    from /Users/noahclark/.rvm/rubies/ruby-1.9.2-p290/bin/irb:16:in `<main>'
ruby-1.9.2-p290 :005 > 

Why does it do this? I've looked in the documentation and .mon or .month is a valid method.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

跨年 2024-12-09 02:15:39

monmonthDate 实例的有效方法。您在 Date 上调用它们 - 即

mon and month are valid methods of Date instances. You're calling them on Date - that is, a class.

公布 2024-12-09 02:15:39

我建议您看一下类方法和实例方法之间的区别。

strptime 属于前者,mon 属于后者。

I suggest you take a look at the difference between class and instance methods.

strptime belongs to the former, mon to the latter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文