美文网首页
HashMap分拣思路与面向对象解题

HashMap分拣思路与面向对象解题

作者: VikingOldYoung | 来源:发表于2016-10-31 09:30 被阅读0次

定义一个student类,属性:name 姓名 ,classname 班号 ,score 成绩
现将若干个student对象放入list,请统计出每个班级的总分和平均分,并
分别打印出来。

面向对象解题:

  • student 类
  • classroom类,用来存放一个班的学生,和他们的总分
  • list用来存放所有的学生
  • map容器,用来存放班级,因为每个班级的key都是班号不会重复。而student类可以根据这个键值找到classroom,存放并加进去。

student类

public class Student {
    private String name;
    private int classname; //存放班号
    private double score;
    
    public Student() {
    }
    
    public Student(String name, int classname, double score) {
        super();
        this.name = name;
        this.classname = classname;
        this.score = score;
    }

ClassRoom类

public class ClassRoom {
    private int no;
    private ArrayList<Student> stu;
    private double totle;
    
    public ClassRoom() {
        stu =new ArrayList<Student>(); //这里stu必须手动初始化,否则赋值为null后会出现空指针异常
    }
    
    public ClassRoom(int no) {
        this();    //调用本类的其他构造器
        this.no = no;
    }

主程序

public class Test01 {
    
    public static void main(String[] args) {
        ArrayList<Student> list=new ArrayList<>();  //建造存放student的列表,泛型在使用时显示确定为Student
        add(list);
        Map<Integer,ClassRoom> rooms=new HashMap<>(); //班号对应班级存放学生对象,把学生放进classroom的数组里
        count(rooms, list);
        print(rooms);
        
    }
    
    public static void print(Map<Integer,ClassRoom> rooms){
        Set<Map.Entry<Integer, ClassRoom>> entries=rooms.entrySet(); //
        Iterator<Map.Entry<Integer, ClassRoom>> it=entries.iterator(); //得到键值对的迭代器
        while(it.hasNext()){
            Map.Entry<Integer,ClassRoom> entry=it.next();
            ClassRoom room=entry.getValue();
            int no=room.getNo();
            double avery=room.getTotle()/room.getStu().size();
            System.out.println("班号为"+no+"的班级,总分为:"+room.getTotle()+",平均分为:"+avery);
        }
    }
    
    /**
     * 计算成绩
     */
    public static void count(Map<Integer,ClassRoom> rooms,ArrayList<Student> list){
        
        for(Student temp:list){
            int no=temp.getClassname();
            double score=temp.getScore();
            //根据班号把classroom给拿出来
            ClassRoom room=rooms.get(no);
            if(room==null){
                room=new ClassRoom(no);//如果没有的话就得新建一个,然后放进去,下面执行加的东西
                rooms.put(no, room);//第一次直接丢进去就可以了
            }
            room.setTotle(room.getTotle()+score);//这里是有的了,先把总分加一下   
            room.getStu().add(temp);//把学生放进去,用的是ArrayList所以可以重名
            //rooms.put(no, room);这个room已经是从Map里面取出来得了,不用放。。。
        }
    }
    /**
     * 现将若干对象放入List
     */
    public static void add(ArrayList<Student> list){
        list.add(new Student("a", 01, 80));
        list.add(new Student("b", 01, 80));
        list.add(new Student("c", 02, 80));
        list.add(new Student("c", 01, 80));
        list.add(new Student("a", 02, 80));
        list.add(new Student("d", 03, 80));
        list.add(new Student("e", 03, 80));
        list.add(new Student("c", 02, 80));
        list.add(new Student("f", 01, 80));
        list.add(new Student("g", 03, 80));
        
    }   
}

相关文章

  • HashMap分拣思路与面向对象解题

    定义一个student类,属性:name 姓名 ,classname 班号 ,score 成绩现将若干个stude...

  • HashMap经典储存 分拣思路

    this is a cat and that is a mice and where is the food? 统...

  • LeetCode—— 无重复字符的最长子串

    题目描述 一、CPP HashMap + 滑动窗口 解题思路:使用HashMap来记录出现的字符和其索引,在扫描过...

  • 面向对象

    面向对象不是一门新技术,而是一门解决问题的新思路。 面向对象是相对于面向过程的一种解决问题新思路,在知道面向对象之...

  • 8-31

    Java面向对象的程序设计语言 面向过程以具体的解题过程为研究和实现的主体 面向对象以需要解决的问题中所涉及的对象...

  • Java学习day-07:面向对象

    一、面向过程和面向对象 1.面向对象与面向过程的区别: 面向对象具有三大特征;封装,继承,多态;面向对象与面向过程...

  • Python 面向对象1(入门)

    一、什么 是面向对象 面向对象就是一种编程思想[处理问题的思路] 面向过程编程:面向~设身处地换位思考--面向过程...

  • 面向协议编程思想

    面向协议编程思想1、开店的例子——面向过程(过程),面向对象(哪些对象)2、面向协议编程考虑的重点是协议,一般思路...

  • 面向对象_初识

    目录 面向对象编程介绍 类与对象介绍 私有属性与私有方法 面向对象编程 1. 面向对象编程介绍 面向对象编程:Ob...

  • 拖拽的面向对象

    一、面向对象的思路与代码步骤:···function Drg(box4){ (Drg是一个构造函数...

网友评论

      本文标题:HashMap分拣思路与面向对象解题

      本文链接:https://www.haomeiwen.com/subject/znauuttx.html