我有 2 个 Coll 对象流,我想根据实例变量i在这里说的一个来查找公共对象。我需要使用 Java 8 流来做到这一点。此外,我需要j通过对公共元素乘以 1000来更新变量。
class Coll
{
Integer i;
Integer j;
public Coll(Integer i, Integer j) {
this.i = i;
this.j = j;
}
public Integer getI() {
return i;
}
public void setI(Integer i) {
this.i = i;
}
public Integer getJ() {
return j;
}
public void setJ(Integer j) {
this.j = j;
}
}
我正在拧类似的东西:
public static void main(String args[])
{
Stream<Coll> stream1 = Stream.of(new Coll(1,10),new Coll(2,20),new Coll(3,30) );
Stream<Coll> stream2 = Stream.of(new Coll(2,20),new Coll(3,30),new Coll(4,40) );
Stream<Coll> common = stream1
.filter(stream2
.map(x->x.getI())
.collect(Collectors.toList())
::equals(stream2
.map(x->x.getI()))
.collect(Collectors.toList()));
common.forEach( x-> x.setJ(x.getJ()*1000));
common.forEach(x -> System.out.println(x));
}
我在 equals 方法周围做错了什么!!我猜 Java8 不支持像 equals 这样的带参数的方法!!
我收到一个编译错误:expected a ')' or ';'围绕 equals 方法
慕尼黑的夜晚无繁华
开满天机
相关分类