博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Collection集合存储自定义对象练习
阅读量:6842 次
发布时间:2019-06-26

本文共 949 字,大约阅读时间需要 3 分钟。

public class Student {     private String name;     private int age;          public Student() {        super();    }     public Student(String name, int age){         super();         this.name = name;         this.age = age;     }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public int getAge() {        return age;    }    public void setAge(int age) {        this.age = age;    }     }===========================================public class Dome1 {    public static void main(String[] args) {        Collection c = new ArrayList();                Student s = new Student("张三",19);        Student s1 = new Student("李四",29);                c.add(s);        c.add(s1);        c.add(new Student("王五",18));        c.add(new Student("赵六",28));                //遍历方式1        Object[] obj = c.toArray();        for(int x=0;x

 

转载于:https://www.cnblogs.com/flei/p/6686574.html

你可能感兴趣的文章
UVA 11796Dog Distance[平面几何]
查看>>
笔试题--mulicore编程题
查看>>
redis 常用命令
查看>>
Python语言学习 (十)1.1
查看>>
版面绘图失败问题记录
查看>>
无线Web开发经验谈
查看>>
[置顶] 多操作系统平台协同开发时 GIT 的注意事项: 不同操作系统中的换行符(不要使用git的换行符自动转换功能,并且,尽可能保证代码的换行符都是unix); 避免使用第三方插件(...
查看>>
为什么鼠标光标向左倾斜,而不是垂直的?
查看>>
Valid Sudoku leetcode
查看>>
临时存存储页面上的数据---js中的cookie
查看>>
centos 安装php trie_fileter 扩展
查看>>
mybatis中的#和$的区别
查看>>
动态代理是基于什么原理?
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
如何使用fio模拟线上环境
查看>>
webpack 入口起点(Entry Points)
查看>>
衣码对照表
查看>>
从输入URL到页面渲染出来的过程?(搭建知识体系)
查看>>
vue2.0构建全栈项目(前后分离实践,vuex的使用)【2】
查看>>
Json概述以及python对json的相关操作
查看>>