博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用HashMap编写一程序实现存储某班级学生信息
阅读量:4603 次
发布时间:2019-06-09

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

1. 使用HashMap编写一程序实现存储某班级学生信息,要求在屏幕上打印如下列表      

 学号   姓名   性别   年龄      

001    张三   男      23        

002    李四   男      22      

要求:学生信息有用户输入,且提供检索、删除操作

Student类代码,对学生信息进行封装

public class Student {    /**学号、姓名、性别、年龄*/    private int id;    private String name;    private char sex;    private int age;    public Student(int id, String name, char sex, int age) {        super();        this.id = id;        this.name = name;        this.sex = sex;        this.age = age;    }    public int getId() {        return id;    }    public void setId(int id) {        this.id = id;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public char getSex() {        return sex;    }    public void setSex(char sex) {        this.sex = sex;    }    public int getAge() {        return age;    }    public void setAge(int age) {        this.age = age;    }    }

测试类代码,实现在控制台对学生信息进行增加,删除,查询。

2  3 import java.io.BufferedReader; 4 import java.io.IOException; 5 import java.io.InputStreamReader; 6 import java.util.HashMap; 7 import java.util.Set; 8  9 public class Test4 {10     /**11      * @param args12      */13     public static void main(String[] args) {14         Student student1 = new Student(001, "张三", '男', 20);15         Student student2 = new Student(002, "王舞", '女', 21);16 17         HashMap
map = new HashMap
();18 map.put(student1.getId(), student1);19 map.put(student2.getId(), student2);20 System.out.println("学生信息如下:");21 print(map);22 System.out.println();23 while (true) {24 System.out25 .println("请选择你要操作的方式:\n学生信息增加请输入:1 学生信息检索请输入:2 学生信息删除请输入:3 退出请输入:4");26 BufferedReader input = new BufferedReader(new InputStreamReader(27 System.in));28 try {29 switch (Integer.parseInt(input.readLine())) {30 // 增加学生信息31 case 1:32 System.out.println("请输入要增加的学生信息,学号、姓名、性别、年龄");33 String[] split = input.readLine().split(" ");34 Student student3 = new Student(Integer.parseInt(split[0]),35 split[1], split[2].charAt(0),36 Integer.parseInt(split[3]));37 map.put(Integer.parseInt(split[0]), student3);38 print(map);39 break;40 // 检索学生信息41 case 2:42 System.out.println("请输入要查询的学生的学号:");43 Student search = map.get(Integer.parseInt(input.readLine()));44 if (search != null) {45 System.out.println("检索到学生的信息是:" + search.getId() + "\t"46 + search.getName() + "\t" + search.getSex()47 + "\t" + search.getAge());48 }49 break;50 //删除学生信息51 case 3:52 System.out.println("请输入要删除的学生的学号:");53 Student remove=map.remove(Integer.parseInt(input.readLine()));54 if(remove!=null){55 System.out.println("要删除的学生是:\n" + remove.getId()56 + "\t" + remove.getName() + "\t"57 + remove.getSex() + "\t" + remove.getAge());58 }59 break;60 case 4:61 System.exit(0);62 63 default:64 break;65 }66 67 } catch (IOException e) {68 e.printStackTrace();69 }70 }71 72 }73 74 static void print(HashMap
map) {75 // 通过key来获取对应的值76 Set
keySet = map.keySet();77 System.out.println("学号\t姓名:\t性别:\t年龄:");78 for (Integer id : keySet) {79 System.out.println(id + "\t" + map.get(id).getName() + "\t"80 + map.get(id).getSex() + "\t" + map.get(id).getAge());81 }82 }83 84 }

 

转载于:https://www.cnblogs.com/dj168/p/3369128.html

你可能感兴趣的文章
Apache Spark 章节1
查看>>
Linux crontab定时执行任务
查看>>
mysql root密码重置
查看>>
33蛇形填数
查看>>
选择排序
查看>>
SQL Server 数据库的数据和日志空间信息
查看>>
前端基础之JavaScript
查看>>
自己动手做个智能小车(6)
查看>>
自己遇到的,曾未知道的知识点
查看>>
P1382 楼房 set用法小结
查看>>
分类器性能度量
查看>>
docker 基础
查看>>
写一个bat文件,删除文件名符合特定规则,且更改日期在某
查看>>
我的友情链接
查看>>
写Use Case的一种方式,从oracle的tutorial抄来的
查看>>
【C#】protected 变量类型
查看>>
Ubuntu解压
查看>>
爬虫_房多多(设置随机数反爬)
查看>>
藏地密码
查看>>
爬虫去重(只是讲了去重的策略,没有具体讲实现过程,反正就是云里雾里)...
查看>>