我想做类似的事情
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),
};
这可以做到吗?