黑马程序员技术交流社区

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

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

  2. public class De_Duixiangshuzu {
  3.         public static void main(String[] args){
  4.                 Student[] arr = new Student[5];
  5.                 arr[0] = new Student("张三 ",23);
  6.                 arr[1] = new Student("李四",24);
  7.                 arr[2] = new Student("王五",25);
  8.                 for(int i = 0;i < arr.length;i++)
  9.                         System.out.println(arr[i]);
  10.                
  11.                
  12.         }
  13.        
  14. }
  15.        
复制代码





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