码迷,mamicode.com
首页 > 其他好文 > 详细

Calendar日期的使用

时间:2020-04-29 17:59:09      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:pre   end   class   int   instance   当前时间   calendar类   使用   date   

//使用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日期的使用

标签:pre   end   class   int   instance   当前时间   calendar类   使用   date   

原文地址:https://www.cnblogs.com/yanchaohui/p/12803536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!