lmod.forEachWithIndex( (e, i) -> lmod.set(i, e*2));
我收到错误:
XList类型中的forWachIndex(Object)方法不适用于参数((e,i) - > {})此表达式的目标类型必须是功能接口
这是什么意思?我该如何解决?
import java.util.*;
public class Main {
public static void main(String[] args) {
XList<Integer> lmod = XList.of( new Integer[] {1,2,8, 10, 11, 30, 3, 4});
lmod.forEachWithIndex( (e, i) -> lmod.set(i, e*2));
System.out.println(lmod);
}}
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.function.Consumer;
public class XList implements Collection, Consumer {
public List<T> list = new ArrayList<T>();
public XList(T[] ints) {
for( int i = 0; i < ints.length; i++)
list.add(ints[i]);
}
public static XList<Integer> of(Integer[] ints) {
return new XList(ints);
}
public void forEachWithIndex(Object object) {
}
@Override
public void accept(T t) {
}
}
我添加了功能界面Consumer,但我仍然不知道下一步该怎么做
答案 0 :(得分:0)
您可以通过以下代码绕过您的错误,但我强烈建议您将forEachWithIndex参数从Object
修改为BiConsumer
喜欢
public void forEachWithIndex(BiConsumer biConsumer) {}
如果你仍然想要严格执行,那么代码可以帮助你。
BiConsumer biConsumer = (e, i) -> lmod.set(i, e*2);
lmod.forEachWithIndex(biConsumer);
另外,我相信当您将BiConsumer传递给一个方法时,您将在内部使用它,在这种情况下,如果您将参数设置为casting
,则需要执行Object
。 / p>