2018年7月2日

java内存分析图

摘要: 阅读全文

posted @ 2018-07-02 19:01 Terlong 阅读(110) 评论(0) 推荐(0)

数组

摘要: 1.数组的定义: int[] a = {1,2,3,4}; int[] a = new int[4]; int[] a = new int[]{12,3,4}; 2.数组的常用方法: a.length; >数组的长度 Arrays.toString(a); >将数组转换成字符串 阅读全文

posted @ 2018-07-02 15:52 Terlong 阅读(71) 评论(0) 推荐(0)

导航