英文:
How resolve this warning Replace this lambda with a method reference in forEach
问题
在这段代码中,我遇到了以下警告:
用方法引用替换这个 lambda。
在这里,我不知道如何解决这个错误,因为它出现在 forEach
中,虽然在 map
中我可以使用 ::
,但在这里似乎不行。
有什么想法吗?
英文:
In this code, I have this warning:
> Replace this lambda with a method reference.
attrs.forEach((key, value) -> {
attributes.put(key, value);
}
);
I don't know resolve this error, because it's in forEach, in map, I can use ::
, but here, I can't.
Any idea?
答案1
得分: 4
Sonar意味着执行:
attrs.forEach(attributes::put);
英文:
Sonar means to do:
attrs.forEach(attributes::put);
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论