Calendar日期的使用
Posted yanchaohui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Calendar日期的使用相关的知识,希望对你有一定的参考价值。
//使用Calendar类代表当前时间 Calendar c = Calendar.getInstance(); //年份 int yea = c.get(Calendar.YEAR); //月份 int month = c.get(Calendar.MONTH)+1; //日 int date = c.get(Calendar.DATE);
以上是关于Calendar日期的使用的主要内容,如果未能解决你的问题,请参考以下文章