Java stream groupingBy and sum multiple fields
问题 Here is my List fooList class Foo { private String name; private int code; private int account; private int time; private String others; ... constructor, getters & setters } e.g.(all the value of account has been set to 1) new Foo(First, 200, 1, 400, other1), new Foo(First, 200, 1, 300, other1), new Foo(First, 201, 1, 10, other1), new Foo(Second, 400, 1, 20, other2), new Foo(Second, 400, 1, 40, other2), new Foo(Third, 100, 1, 200, other3), new Foo(Third, 101, 1, 900, other3) I want to