- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
Java8 流/Lambda 的新手。我需要使用属性 (Id) 对学生对象列表进行分组,然后根据分组的学生属性创建对象 (StudentSubject)。例如我有以下类(class):
class Student{
int id;
String name;
String subject;
int score;
public Student(int id, String name, String subject, int score) {
this.id = id;
this.name = name;
this.subject = subject;
this.score = score;
}
}
class StudentSubject {
String name;
List<Result> results;
}
class Result {
String subjectName;
int score;
//getter setters
}
因此对于以下输入:
id,name,subject,score
1,John,Math,80
1,John,Physics,65
2,Thomas,Computer,55
2,Thomas,Biology,70
结果输出应该是List<StudentSubject>
具有从 List<Student>
设置的属性.说点什么:
1=[
name = 'John'
Result{subject='Math', score=80},
Result{subject='Physics', score=65},
]
2=[
name = 'Thomas'
Result{subject='Computer', score=55},
Result{subject='Biology', score=70},
]
如何先按 Id 分组,然后将属性设置为 Result 和 StudentSubject?
public static void main(String[] args) {
List<Student> studentList = Lists.newArrayList();
studentList.add(new Student(1,"John","Math",80));
studentList.add(new Student(1,"John","Physics",65));
studentList.add(new Student(2,"Thomas","Computer",55));
studentList.add(new Student(2,"Thomas","Biology",70));
// group by Id studentList.stream().collect(Collectors.groupingBy(Student::getId));
//set result list
List<Result> resultList = studentList.stream().map(s -> {
Result result = new Result();
result.setSubjectName(s.getSubject());
result.setScore(s.getScore());
return result;
}).collect(Collectors.toList());
}
最佳答案
结果应该是List<StudentSubject>
在您的情况下,您可以使用这种方式:
List<StudentSubject> resultList = studentList.stream()
.collect(Collectors.groupingBy(Student::getId)) // until this point group by Id
.entrySet() // for each entry
.stream()
.map(s -> new StudentSubject( // create a new StudentSubject
s.getValue().get(0).getName(), // you can use just the name of first element
s.getValue().stream() // with a list of Result
.map(r -> new Result(r.getSubject(), r.getScore()))
.collect(Collectors.toList()))
).collect(Collectors.toList()); // then collect every thing as a List
输出
StudentSubject{name='John', results=[Result{subjectName='Math', score=80}, Result{subjectName='Physics', score=65}]}
StudentSubject{name='Thomas', results=[Result{subjectName='Computer', score=55}, Result{subjectName='Biology', score=70}]}
关于java - 按属性对对象列表进行分组并将其他剩余属性设置为不同的对象列表 : Java 8 stream and Lambdas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51620501/
我正在运行一个带有 while 约束的 SQL 查询,其中包含一些“id”。例如: SELECT table.id FROM TableOne table WHERE table.id IN (1,
我正在寻找在替换其中一个元素后打印元素列表的最正确方法。我可以按如下方式做,但显然很困惑。 #!/usr/bin/python import sys file = open(sys.argv[1])
这个问题在这里已经有了答案: How wide is the default `` margin? (4 个答案) How do I remove the top margin in a web
当我尝试使用命令安装 rvm 时::(I am Using UBUNTU 12.04 LTS) curl -L https://get.rvm.io | bash -s 当我尝试与简单用户相同的命令时
我使用 GOPro 工作人员 6 个月前发送给我的命令,通过终端(在 Gopro 网络上)使用 Gopro Hero3 拍摄照片/视频。有效。但是,在过去的一个月里,我一直在尝试再次执行此操作,并且不
尽管知道我不应该关闭应用程序按钮,但我仍然这样做。完成所有 Activity 后,我调用 finish() 方法,它们调用析构函数和所有内容。用户的行为也是正确的。但我想知道为什么还有 5 个打开的线
当我在 Rest Controller 中的类级别启用 @Validated spring 注释时,会生成 2 个验证上下文(每个验证上下文都有不同的前缀)。 @Validated 注释是必需的,因为
在旧的 API 中,剩余的允许容量显然作为 X-Ratelimit-Remaining 返回HTTP header 。 然而,current version's documentation对此一无所获
我一直在使用 Service Fabric 一段时间,成功构建、部署和测试了多个服务,但我刚刚完成构建的服务在部署时失败(请参阅下面的错误)。在诊断中,我尝试使用 VS 模板(没有代码更改)创建和部署
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: Progress unit in ProgressDialog 如何覆盖进度条进度消息,即 61/100 到
我正在用 Objective-C (Cocoa) 编写命令行实用程序的前端。我需要解析输出以检查不同类型的消息。有两种基本类型;信息消息和下载状态消息。信息消息始终以以下内容之一开头:INFO:、WA
我是一名优秀的程序员,十分优秀!