我需要将Java中的当前年份确定为整数。我可以使用java.util.Date(),但已弃用。
java.util.Date()
int year = Calendar.getInstance().get(Calendar.YEAR);
不知道这是否符合不设置新日历的标准?(为什么反对这样做?)