本题目要求输入关键字,在映射(Map)集合中进行查找。
import java.util.;
/ 这里是 People 类代码,无需关心
*/
public class Main {
public static void main(String args[]) {
Map<String,People> peoples = new HashMap<String,People>();
peoples.put("rose", new People("rose",18));
peoples.put("hunifu", new People("hunifu",19));
peoples.put("hunifu", new People("britsh",20));
if( ) {/正确判断 Map 元素个数/
Scanner sc=new Scanner(System.in);
String key=sc.next();
if( )/判断关键字是否存在 Map 内/
System.out.println( );/取出关键字指定元素/
else
System.out.println("映射中不存在 key ="+key+" 的元素");
}
}
}