我现在有不确定数量的数据,我想把这些数据都放进map中去。
例如:
数据:英文成绩:123,100,99
数学成绩:100,90,89
语文成绩:90,78,97
政治成绩:100,29,20
我想把这些数据放进map中。尽量写的详细点。
import java.util.*;
import java.lang.*;
import java.io.*;
import java.util.Collection.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Map map = new HashMap();
map.put("英文", new int[] { 123, 100, 99 });
map.put("数学", new int[] { 100, 90, 89 });
map.put("语文", new int[] { 90, 78, 97 });
map.put("政治", new int[] { 100, 29, 20 });
for (Object obj : map.keySet())
{
System.out.println("--------------");
System.out.println(obj);
for (Object x : (int[])map.get(obj))
System.out.println(x);
}
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。