ruby中Datetime.civil和Datetime.new有区别吗?

前端之家收集整理的这篇文章主要介绍了ruby中Datetime.civil和Datetime.new有区别吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,我一直在网上搜索,看到有很多别名为 ruby方法做同样的事情(我不知道为什么)
所以我很困惑,在ruby中Datetime.civil和Datetime.new之间有区别吗?

解决方法

根据 the documentation,他们是一样的.
也:
DateTime.method(:new) == DateTime.method(:civil)
=> true

猜你在找的Ruby相关文章