第7章 常用类

文章介绍了如何在Java中使用ArrayList记录和操作student对象,包括遍历、查询、删除以及使用Collections进行排序。同时,还对比了HashSet和TreeSet的使用方法,如添加、遍历特性。
摘要由CSDN通过智能技术生成

 1.使用Arraylist,记录一组student对象,实现遍历,查询,删除,并用Collections实现排序


import java.util.*;
import  java.util.ArrayList;
import  java.util.Collection;
public class student {
    private String name;
    private int age;
    public student(String name,int age)
    {
        this.age=age;
        this.name=name;

    }
    public static void main(String args[])
    {
        //构造放students的容器
        ArrayList<student>students=new ArrayList<>();
        //给容器添加对象
        students.add(new student("Jone",25));
        students.add(new student("Alice",22));
        students.add(new student("Bob",19));
        //遍历
        printAll(students);
        //查询
        findname(students,"Bob");
        //删除
        removestudent(students,"Bob");
        //collections 排序
        Collections.sort(students,(S1,S2)->S1.age-S2.age);
        System.out.println("排序之后");
        printAll(students);

    }
    //遍历
    //增强性for循环
    public static void printAll(ArrayList<student>students)
    {
        for(student a:students)
        {
            System.out.println(a.name);
        }
    }
    //查询
    public static student findname(ArrayList<student>students,String searchname)
    {
        for(student a:students)
        {
            if(a.name.equals(searchname))
            {
                return a;
            }
        }
        return null;
    }
    public static void removestudent(ArrayList<student>students,String removename)
    {
        student a=findname(students,removename);
        if(a!=null)
        {
            students.remove(a);
        }
    }

  }



2.set :hashset和treeset

import java.util.*;

public class useset{

    public static void main(String args[]){
        HashSet<String>h1=new HashSet<String>():
        TreeSet<String>t1=new TreeSet<String>():
        TreeSet<String>t2=new TreeSet<String>((o1,o2)->-o1.compareTo(o2);):

        //add值
        for(int i=5;i>0;i--)  h1.add("string"+i);
        for(int i=5;i>0;i--)  t1.add("string"+i);
        for(int i=5;i>0;i--)  t2.add("string"+i);
        //遍历
        //增强性for循环
        for(String s:h1)
        {
            System.out.println(s+",");
        }
        //iterator遍历器遍历
        Iterator<String>i1=t1.iterator();
        while(i1.hasNext())
        {
            System.out.println(i1.next()+",");
        }

        
        






}

]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值