黑马程序员技术交流社区

标题: 数组代码 [打印本页]

作者: 至尊宝的温柔    时间: 2015-11-6 21:34
标题: 数组代码
  1. package com.heima;

  2. import java.util.ArrayList;
  3. import java.util.Collection;

  4. public class De_Jzs {
  5.         public static void main(String[] args){
  6.                 Collection c = new ArrayList();
  7.                 c.add(new Student("zhandssaa",34));
  8.                 c.add(new Student("LISI",43));
  9.                 c.add(new Student("andy",42));
  10.                 Object[] arr = c.toArray();
  11.                 for(int i = 0;i < arr.length; i++)
  12.                         System.out.println(arr[i]);
  13.                
  14.         }
  15. }
复制代码

作者: shiawase    时间: 2015-11-6 22:40
感谢楼主!!!!!!!!!
作者: Jared    时间: 2015-11-6 23:26
没加注释,差评
作者: wqd123    时间: 2015-11-6 23:33
感谢楼主




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2