Scanner scanner1=new Scanner(System.in); String a=scanner1.nextLine(); switch (a) { case "学生": { System.out.println("请输入想要存储的学生人数:"); Scanner scanner = new Scanner(System.in); int number = scanner.nextInt(); List<Student> studentList = new ArrayList<>(); for (int i=0;i<number;i++) { System.out.println("请输入第"+(i+1)+"个人的学号:"); int num = scanner.nextInt(); scanner.nextLine(); System.out.println("请输入第"+(i+1)+"个人的姓名:"); String names = scanner.nextLine(); System.out.println("请输入第"+(i+1)+"个人的所学科目:"); String sub = scanner.nextLine(); Student student = new Student(num, names, sub); studentList.add(student); } for (int i=0;i<number;i++) { System.out.println("第"+(i+1)+"个学生的信息"); System.out.println("学号:"+studentList.get(i).getNumber()); System.out.println("姓名:"+studentList.get(i).getName()); System.out.println("科目:"+studentList.get(i).getSubject()); System.out.println(); } }这串代码如何使用hashmap索引list里面的科目
时间: 2024-02-14 15:04:42 浏览: 95
可以将List<Student>中的每个Student对象的subject作为key,将对应的Student对象作为value存入HashMap<String, Student>中,然后就可以通过key来获取对应的Student对象了。代码如下:
```
Map<String, Student> map = new HashMap<>();
for (Student student : studentList) {
map.put(student.getSubject(), student);
}
```
然后可以通过如下方式来获取对应科目的学生信息:
```
String sub = "数学"; // 假设要获取数学科目的学生信息
Student student = map.get(sub);
if (student != null) {
System.out.println("学号:" + student.getNumber());
System.out.println("姓名:" + student.getName());
System.out.println("科目:" + student.getSubject());
}
```
相关问题
Scanner scan = new Scanner(System.in); String name = scan.nextLine();和String name = new Scanner(System.in).nextLine();的区别是什么
这两行代码的功能都是从控制台读取输入的字符串,并将其赋值给变量name。它们的区别在于:
1. 对象创建方式不同:第一行代码先创建了一个Scanner对象,然后通过该对象读取输入的字符串。第二行代码直接创建了一个Scanner对象,并通过它读取输入的字符串。
2. 对象的使用方式不同:第一行代码通过之前创建的Scanner对象调用nextLine()方法来读取输入的字符串。第二行代码直接调用Scanner对象的nextLine()方法来读取输入的字符串。
总的来说,这两行代码的功能是相同的,只是创建对象和使用方式不同。
package cipher; import java.util.Scanner; public class Switch { public static void main(String args[]) { System.out.println("*******欢迎来到凯撒密码加解密系统*******"); System.out.println("请输入你所要使用的功能:1.加密 2.解密"); Scanner t=new Scanner(System.in); int choice=t.nextInt(); switch(choice) { case 1: Encrypt st=new Encrypt(); System.out.println("请输入明文:"); Scanner s1=new Scanner(System.in); String text=s1.nextLine();//测试明文的长度 System.out .println("请输入偏移量:"); Scanner s2=new Scanner(System.in); int key1=s2.nextInt(); st.encryption(key1, text);break; case 2: Decode sr=new Decode(); System.out.println("请输入密文"); Scanner s3=new Scanner(System.in); String code=s3.nextLine();//测试密文的长度 System.out.println("请输入偏移量"); Scanner s4=new Scanner(System.in); int key2=s4.nextInt(); sr.decryption(key2, code);break; } } }
这是一个使用Java语言编写的凯撒密码加解密程序,包含一个Switch类和两个分别用于加密和解密的类Encrypt和Decode。
程序启动后,首先会输出欢迎语和提示用户选择加密或解密功能。用户输入相应的数字后,程序根据用户选择执行相应的操作。
当用户选择加密功能时,程序会要求用户输入明文和偏移量,然后调用Encrypt类中的encryption方法对明文进行加密,并输出加密后的密文。
当用户选择解密功能时,程序会要求用户输入密文和偏移量,然后调用Decode类中的decryption方法对密文进行解密,并输出解密后的明文。
需要注意的是,该程序只能处理纯文本的加解密,对于包含数字、符号等复杂字符的消息无法处理。同时,该程序使用的是凯撒密码,安全性较低,不适用于对机密信息的加密。
阅读全文