时间相关操作JAVA学习之路

Java中BigInteger类、BigDecimal类、Dat

2016-10-27  本文已影响297人  清风沐沐

BigInteger类

这个类就很好理解了,首先我们要了解Integer的范围是多少?

public class BigIntegerDemo { 
     public static void main(String[] args) {
        //我们先来输出Integer的最大最小值              
       System.out.println(Integer.MAX_VALUE);//2147483647 
       System.out.println(Integer.MIN_VALUE);//-2147483648 
       //可以看到Integer的范围,如果我们超过Integer的范围,就要用BigInteger了 
      //假如我们用Integer来创建一个超出它的范围的一个对象,那么肯定是报错的 
      // Integer iii = new Integer("2147483648");
      // NumberFormatException
      //    System.out.println(iii); 
      // 所以通过大整数来创建对象 
      BigInteger bi = new BigInteger("2147483648");    
      System.out.println("BigInteger :" + bi);//BigInteger :2147483648 
   }
}
public class BigIntegerDemo { 
     public static void main(String[] args) { 
       //首先创建两个对象,然后我们来验证加减乘除的成员方法 
       BigInteger bi1 = new BigInteger("100");
       BigInteger bi2 = new BigInteger("50"); 
      //加 
      System.out.println("add:" + bi1.add(bi2));//add:150 
     //减 
    System.out.println("subtract:" + bi1.subtract(bi2));//subtract:50 
    //乘 
     System.out.println("multiply:" + bi1.multiply(bi2));//multiply:5000 
     //除
     System.out.println("divide:" + bi1.divide(bi2));
      //divide:2 
      BigInteger[] bis = bi1.divideAndRemainder(bi2); 
      System.out.println("商:" + bis[0]);   //商:2
      System.out.println("余数:" + bis[1]);  //余数:0 
   }
}

BigDecimal类

看到了这个类,肯定有人都不知道它是用来干什么的,我来给大家解释一下
由于在运算的时候,float类型和double很容易丢失精度。所以,为了能精确的表示、计算浮点数,Java提供了BigDecimal类

public class BigDecimalDemo {
    //下面这些输出结果你能看出他们的结果吗?在看看下面的输出结果是不是和你想的一样呢? 
   public static void main(String[] args) { 
         System.out.println(0.09 + 0.01); 
         System.out.println(1.0 - 0.32); 
         System.out.println(1.015 * 100); 
        System.out.println(1.301 / 100); 
        System.out.println(1.0 - 0.12); 
  }
}
public class BigDecimalDemo { 
        public static void main(String[] args) { 
BigDecimal bd1 = new BigDecimal("0.09"); 
BigDecimal bd2 = new BigDecimal("0.01"); 
System.out.println("add:" + bd1.add(bd2)); 
BigDecimal bd3 = new BigDecimal("1.0"); 
BigDecimal bd4 = new BigDecimal("0.32"); 
System.out.println("subtract:" + bd3.subtract(bd4)); 
BigDecimal bd5 = new BigDecimal("1.015"); 
BigDecimal bd6 = new BigDecimal("100"); 
System.out.println("multiply:" + bd5.multiply(bd6)); 
BigDecimal bd7 = new BigDecimal("1.301");
BigDecimal bd8 = new BigDecimal("100"); 
System.out.println("divide:" + bd7.divide(bd8)); System.out.println("divide:"+ bd7.divide(bd8, 3, BigDecimal.ROUND_HALF_UP)); 
System.out.println("divide:"+ bd7.divide(bd8, 8, BigDecimal.ROUND_HALF_UP)); 
     }
}

如果你仔细看结果你会发现,除法最后保留几位小数,还有为什么要用BigDecimal.ROUND_HALF_UP,我来再给大家讲讲除法的详细说明

下面我们来看看除法的详细说明:
- divide(BigDecimal divisor, int scale, introundingMode)

Date类

public class DateDemo { 
      public static void main(String[] args) { 
// 创建对象 
Date d = new Date();
System.out.println("d:" + d) 
//long time = System.currentTimeMillis();
//获取当前的时间 
// 创建对象
 long time = 1000 * 60 * 60; 
// 1小时 
Date d2 = new Date(time); 
System.out.println("d2:" + d2); 
     }
}
public class DateDemo { 
    public static void main(String[] args) { 
    // 创建对象 
Date d = new Date(); 
   // 获取时间 
long time = d.getTime(); 
System.out.println(time); 
System.out.println(System.currentTimeMillis());
//运行结果可以发现,上面的结果是相同的 
// 设置时间 
d.setTime(1000); 
System.out.println("d:" + d); 
}
}

我们发现得到的日期不是我们平时看到的,是国外的英文和数字组合,这样让我们读起来就很不爽了,那么,我们有办法让它变成中国式的年月日时分秒类型的吗?答案是肯定可以的。java为我们提供了DateFormat类,下面我们来进行学习

DateFormat类

    给定模式字符串该如何写呢?我们可以去看API找到对应的模式

        年 y
        月 M
        日 d
        时 H
        分 m
        秒 s
        所以一般我们要这样书写”yyyy年MM月dd日 HH:mm:ss”
        就会得到相应的日期:比如 2016年08月17日 23:05:16
public class DateFormatDemo { 
     public static void main(String[] args) throws ParseException { 
  // Date -- String 
// 创建日期对象 
Date d = new Date(); 
// 创建格式化对象
// SimpleDateFormat sdf = new SimpleDateFormat(); 
// 给定模式
 SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); 

// Date -- String(格式化) 
String s = sdf.format(d); 
System.out.println(s); 

//String -- Date(解析) 
String str = "2016-08-08 12:12:12"; 
//在把一个字符串解析为日期的时候,请注意格式必须和给定的字符串格式匹配 
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
Date dd = sdf2.parse(str); 
System.out.println(dd); 
}
}

计算你来到世界的天数

public class MyYearOldDemo {
    public static void main(String[] args) throws ParseException { 
// 键盘录入你的出生的年月日,注意和下面的格式相同yyyy-MM-dd Scanner sc = new Scanner(System.in); 
System.out.println("请输入你的出生年月日:"); 
String line = sc.nextLine(); 
// 把该字符串转换为一个日期 
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); 
Date d = sdf.parse(line); 
// 通过该日期得到一个毫秒值
 long myTime = d.getTime(); 
// 获取当前时间的毫秒值 
long nowTime = System.currentTimeMillis(); 
// 用nowTime - myTime 得到一个毫秒值
 long time = nowTime - myTime; 
// 把time 的毫秒值转换为年 
long day = time / 1000 / 60 / 60 / 24; System.out.println("你来到这个世界:" + day + "天"); 
}
}

Calendar类

public class CalendarDemo { 
   public static void main(String[] args) { 
// 其日历字段已由当前日期和时间初始化: 
Calendar rightNow = Calendar.getInstance(); 
// 子类对象 
// 获取年 
int year = rightNow.get(Calendar.YEAR); 
// 获取月 
int month = rightNow.get(Calendar.MONTH); 
// 获取日 
int date = rightNow.get(Calendar.DATE); 
System.out.println(year + "年" + (month + 1) + "月" + date + "日"); 
// 5年后的10天前 
c.add(Calendar.YEAR, 5); 
c.add(Calendar.DATE, -10); 
// 获取年 
year = c.get(Calendar.YEAR); 
// 获取月 
month = c.get(Calendar.MONTH); 
// 获取日 date = c.get(Calendar.DATE);
 System.out.println(year + "年" + (month + 1) + "月" + date + "日"); 
c.set(2011, 11, 11); 
// 获取年 
year = c.get(Calendar.YEAR); 
// 获取月 
month = c.get(Calendar.MONTH); 
// 获取日 
date = c.get(Calendar.DATE); 
System.out.println(year + "年" + (month + 1) + "月" + date + "日"); 
}
}
上一篇下一篇

猜你喜欢

热点阅读