码迷,mamicode.com
首页 > 编程语言 > 详细

Java对象数组

时间:2018-09-17 00:00:16      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:对象   getname   tag   --   demo   []   str   oid   pack   

package com.zhangxueliang.demo;

public class StudentDemo {
    public static void main(String[] args) {
        //创建学生数组
        Student[] students = new Student[3];
        
        //创建学生对象
        Student s1 = new Student("曹操",40);
        Student s2 = new Student("刘备",35);
        Student s3 = new Student("孙权",30);
        
        //把学生对象作为元素赋值给学生数组
        students[0] = s1;
        students[1] = s2;
        students[2] = s3;
        
        //遍历学生数组
        for(int x=0; x<students.length; x++) {
            Student s = students[x];
            //System.out.println(s);
            System.out.println(s.getName()+"---"+s.getAge());
        }
    }
}

 

Java对象数组

标签:对象   getname   tag   --   demo   []   str   oid   pack   

原文地址:https://www.cnblogs.com/niwotaxuexiba/p/9658083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!