繁体   English   中英

关于Joda的DateTime的一个澄清点

[英]A point of clarification on Joda's DateTime

我想做点什么

private DateTime[] importantDates = {
        new DateTime(2013, 6, 15, 0, 0),
        new DateTime(2013, 9, 15, 0, 0)
};

哪一年总是当年。 Joda是否允许这样的事情,没有计算?

示例:现在我们生活在2013年。我宁愿不对此值进行硬编码。

就此而言,我真的很喜欢它

private DateTime[] importantDates = {
        new DateTime(current_year, 6, 15),
        new DateTime(current_year, 9, 15),
};

可以这样做吗?

那么最简单的方法是:

int year = new DateTime().getYear();
DateTime[] dates = new DateTime[] {
    new DateTime(year, 6, 15, 0, 0),
    new DateTime(year, 9, 15, 0, 0),
};

这对于实例变量并不理想,因为它没有充分的理由引入了额外的实例变量( year ),但您可以轻松地将其放入辅助方法中:

private final DateTime[] importantDates = createImportantDatesThisYear();

private static DateTime[] createImportantDatesThisYear() {
    int year = new DateTime().getYear();
    return new DateTime[] {
        new DateTime(year, 6, 15, 0, 0),
        new DateTime(year, 9, 15, 0, 0),
    };
}

请注意,所有此代码都假定您需要

DateTime.now().getYear()将返回当前年份( javadoc )。 例如,您可能希望使用其中一个重载版本来调整时区。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM