本帖最后由 吴刚 于 2012-11-12 11:55 编辑
- public class ArrayDemo {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- // int[] ary;
- // ary = new int[]{1,2,3,4,5};
- // int[] ary2 = {1, 2,3,4,5};
- //
- // int[] ary3 = new int[10];
- // System.out.println(ary3[3]);
- //
- char[] ary4 = new char[5];
- System.out.println(ary4[2]+',');
- System.out.println(ary4[2]+",");
- System.out.println(ary4[2]);
- }
- }
复制代码 输出结果:44 口, 口
后面两个输出结果我能理解,第一个,表死凌乱了,谢谢了
|