• 大小: 0.01M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签: java  Lis  提取  分组  排序  

资源简介

Java list 集合操作

资源截图

代码片段和文件信息

package com.llf.list;

/**
 * @Author llf
 * @Date 2019/11/13 14:37
 **/
public class Person {
    private Integer id;
    private String name;
    private Integer sex;
    private Integer age;
    private Integer money;

    public Person (Integer id String name Integer sex Integer age Integer money) {
        this.id = id;
        this.name = name;
        this.sex = sex;
        this.age = age;
        this.money = money;
    }
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getSex() {
        return sex;
    }

    public void setSex(Integer sex) {
        this.sex = sex;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    pub

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-11-13 14:48  listdemo\
     目录           0  2019-11-13 14:48  listdemo\.idea\
     文件         247  2019-11-13 14:36  listdemo\.idea\compiler.xml
     目录           0  2019-11-13 14:38  listdemo\.idea\dictionaries\
     文件          84  2019-11-13 14:38  listdemo\.idea\dictionaries\llf.xml
     文件         200  2019-11-13 14:36  listdemo\.idea\encodings.xml
     目录           0  2019-11-13 14:36  listdemo\.idea\inspectionProfiles\
     文件         262  2019-11-13 14:36  listdemo\.idea\inspectionProfiles\Project_Default.xml
     文件         273  2019-11-13 14:38  listdemo\.idea\misc.xml
     文件         256  2019-11-13 14:36  listdemo\.idea\modules.xml
     文件        8792  2019-11-13 14:38  listdemo\.idea\uiDesigner.xml
     文件       12833  2019-11-13 14:48  listdemo\.idea\workspace.xml
     文件         423  2019-11-13 14:36  listdemo\listdemo.iml
     目录           0  2019-11-13 14:48  listdemo\out\
     目录           0  2019-11-13 14:48  listdemo\out\production\
     目录           0  2019-11-13 14:48  listdemo\out\production\listdemo\
     目录           0  2019-11-13 14:48  listdemo\out\production\listdemo\com\
     目录           0  2019-11-13 14:48  listdemo\out\production\listdemo\com\llf\
     目录           0  2019-11-13 14:48  listdemo\out\production\listdemo\com\llf\list\
     文件        1510  2019-11-13 14:48  listdemo\out\production\listdemo\com\llf\list\Person.class
     文件        4578  2019-11-13 14:48  listdemo\out\production\listdemo\com\llf\list\Test.class
     目录           0  2019-11-13 14:48  listdemo\out\production\listdemo\generated\
     目录           0  2019-11-13 14:37  listdemo\src\
     目录           0  2019-11-13 14:37  listdemo\src\com\
     目录           0  2019-11-13 14:37  listdemo\src\com\llf\
     目录           0  2019-11-13 14:47  listdemo\src\com\llf\list\
     文件        1140  2019-11-13 14:47  listdemo\src\com\llf\list\Person.java
     文件        2050  2019-11-13 14:47  listdemo\src\com\llf\list\Test.java

评论

共有 条评论