摘要:
一、Math类 public class Test01 { public static void main(String[] args){ //1、Math.random()产生[0,1)之间的小数 for (int i=0;i<10;i++){ System.out.println(Math.ra 阅读全文
posted @ 2019-06-23 18:27
旅行没有终点
阅读(216)
评论(0)
推荐(0)
摘要:
一、演示date类 import java.util.Date; /** * 演示date类 * @author:csjin * 创建日期:2019-06-23-16:32 */ public class Test01 { public static void main(String[] args) 阅读全文
posted @ 2019-06-23 17:40
旅行没有终点
阅读(215)
评论(0)
推荐(0)
摘要:
一、包装类: 基本类型-包装类 byte-Byte short-Short int-Integer long-Long float-Float double-Double char-Character boolean-Boolean 二、包装类对象的创建 character包装类构造方法只有一个,根 阅读全文
posted @ 2019-06-23 15:19
旅行没有终点
阅读(228)
评论(0)
推荐(0)