1 JAVA数组声明是这样的,数据类型[] 数组名称 = new 数据类型[常量] ;
数组名称[1]=1;
数组名称[2]=2;
2 JAVA日期 要引入 import java.util.Date 包
Date date = new Date();
//输出日期时间
System.out.println(date.toString());
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/280015.html