5
Y以SimpleDateFormat返回2012,而y返回2011
我不知道为什么'Y'返回2012,而'y'返回2011在SimpleDateFormat: System.out.println(new SimpleDateFormat("Y").format(new Date())); // prints 2012 System.out.println(new SimpleDateFormat("y").format(new Date())); // prints 2011 谁能解释为什么?