我永远记不住的Java小代码

1.String和Date之间的转换

SimpleDateFormat formatter= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date s_time = formatter.parse(startString);      //字符串转为Date
String time = formatter.format(s_time);            //Date转为字符串

2.Java定义数组:
(1)一维数组

int[] arr =  new int[3];
int[] arr =  new int[3]{1,2,3};
int[] arr = {1,2,3};

(2)二维数组

int[][] arr = new int[3][2];
int[][] arr = new int[3][];
int[][] arr = {{1,2,3},{1,2,4}};

未完待续

你可能感兴趣的:(Java)