为什么 Java 日历中的 1 月是 0? [英] Why is January month 0 in Java Calendar?

查看:28
本文介绍了为什么 Java 日历中的 1 月是 0?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

java.util.Calendar 中,一月被定义为 0 月,而不是 1 月.有什么具体原因吗?

In java.util.Calendar, January is defined as month 0, not month 1. Is there any specific reason to that ?

我看到很多人对此感到困惑......

I have seen many people getting confused about that...

推荐答案

这只是 Java 日期/时间 API 的可怕混乱的一部分.列出它的问题需要很长时间(而且我确定我不知道一半的问题).诚然,处理日期和时间是很棘手的,但无论如何都行.

It's just part of the horrendous mess which is the Java date/time API. Listing what's wrong with it would take a very long time (and I'm sure I don't know half of the problems). Admittedly working with dates and times is tricky, but aaargh anyway.

帮自己一个忙,改用 Joda Time,或者可能使用 JSR-310.

Do yourself a favour and use Joda Time instead, or possibly JSR-310.

至于原因 - 正如其他答案中所述,这很可能是由于旧的 C API,或者只是从 0 开始一切的一般感觉......当然,除了天从 1 开始.我怀疑原始实施团队之外的任何人是否真的能说出原因 - 但我再次敦促读者不要太担心为什么做出错误的决定,而是要看看整个肮脏的范围在 java.util.Calendar 中找到更好的东西.

As for the reasons why - as noted in other answers, it could well be due to old C APIs, or just a general feeling of starting everything from 0... except that days start with 1, of course. I doubt whether anyone outside the original implementation team could really state reasons - but again, I'd urge readers not to worry so much about why bad decisions were taken, as to look at the whole gamut of nastiness in java.util.Calendar and find something better.

赞成使用基于 0 的索引的一点是它使诸如名称数组"之类的事情变得更容易:

One point which is in favour of using 0-based indexes is that it makes things like "arrays of names" easier:

// I "know" there are 12 months
String[] monthNames = new String[12]; // and populate...
String name = monthNames[calendar.get(Calendar.MONTH)];

当然,一旦您获得 13 个月的日历,这就会失败……但至少指定的大小是您期望的月数.

Of course, this fails as soon as you get a calendar with 13 months... but at least the size specified is the number of months you expect.

这不是一个好的理由,但这是一个一个理由...

This isn't a good reason, but it's a reason...

作为评论请求一些关于我认为日期/日历错误的想法:

As a comment sort of requests some ideas about what I think is wrong with Date/Calendar:

  • 令人惊讶的基数(Date 中的年份基数为 1900,对于已弃用的构造函数,不可否认;0 为两者中的月份基数)
  • 可变性 - 使用不可变类型使更容易处理真正有效的
  • 类型集不足:将 DateCalendar 作为不同的东西很好,但是缺少本地"与分区"值的分离,日期/时间与日期与时间也是如此
  • 一个 API 会导致带有魔术常量的丑陋代码,而不是明确命名的方法
  • 一个非常难以推理的 API - 所有关于何时重新计算事物等的业务
  • 使用无参数构造函数默认为now",导致代码难以测试
  • 始终使用系统本地时区的 Date.toString() 实现(之前很多 Stack Overflow 用户对此感到困惑)
  • Surprising bases (1900 as the year base in Date, admittedly for deprecated constructors; 0 as the month base in both)
  • Mutability - using immutable types makes it much simpler to work with what are really effectively values
  • An insufficient set of types: it's nice to have Date and Calendar as different things, but the separation of "local" vs "zoned" values is missing, as is date/time vs date vs time
  • An API which leads to ugly code with magic constants, instead of clearly named methods
  • An API which is very hard to reason about - all the business about when things are recomputed etc
  • The use of parameterless constructors to default to "now", which leads to hard-to-test code
  • The Date.toString() implementation which always uses the system local time zone (that's confused many Stack Overflow users before now)

这篇关于为什么 Java 日历中的 1 月是 0?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆