标签:comm ant https margin min new 使用 tps 16px
注:本章节是网上查找保存学习使用!
java中数组的定义:
字符串数组:
1、String[] str=new String[5];
2、String[] str=new String[]{"a","b"};
3、String[] str={"a","b"};
整形数组:
1、int[] i=new int[5];
2、int[] i=new int[]{0,1};
3、int[] i={0,1};
其他数组定义的方法类似!
. 声明一个数组
标签:comm ant https margin min new 使用 tps 16px
原文地址:http://www.cnblogs.com/zhangisqiang/p/7182323.html