A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class Demo02 {
        public static void main(String[] args) {
                Calendar me = Calendar.getInstance();     //我
                Calendar now = Calendar.getInstance();
                me.set(1995, 5, 22);
                //获取出生到现在的毫秒值
                long chusheng = me.getTimeInMillis();
                long today = now.getTimeInMillis();
                //获取一天多少秒
                long day = 1000*60*60*24;
                long tian = (today-chusheng)/day;
                System.out.println("我已经活了"+tian);
        }
}           
OVER!!!

3 个回复

倒序浏览
大约在7665天左右
回复 使用道具 举报
wmc1994 发表于 2016-8-9 22:47
大约在7665天左右

你大概94年的,对不对。
回复 使用道具 举报
我算的应该是1995年的,怎么会是94 的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马