为什么我收到错误“没有类型实例”地图方法?

发布于 2025-01-11 16:00:47 字数 512 浏览 0 评论 0原文

我有这个功能:

public <D> List<D> mapList(Object source, List<D> targetClass) {
    return targetClass
            .stream()
            .map(element -> modelMapper.map(source, element))
            .collect(Collectors.toList());
}

在这一行:

    map(element -> modelMapper.map(source, element))
    

我有这个错误:

no instance of type variable r exists so that void conforms to r

知道为什么我会收到上面的错误以及如何修复它吗?

I have this function:

public <D> List<D> mapList(Object source, List<D> targetClass) {
    return targetClass
            .stream()
            .map(element -> modelMapper.map(source, element))
            .collect(Collectors.toList());
}

On this row:

    map(element -> modelMapper.map(source, element))
    

I have this error:

no instance of type variable r exists so that void conforms to r

Any idea why I get the error above and how to fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

攒眉千度 2025-01-18 16:00:47

Stream 类上的 map 方法返回一个 Stream

<R> Stream<R> map(Function<? super T, ? extends R> mapper);

ModelMapper map 方法返回 void

public void map(Object source, Object destination) {

因此错误。 “void”无法流式传输。

map method on Stream class return a Stream.

<R> Stream<R> map(Function<? super T, ? extends R> mapper);

ModelMapper map method returns void.

public void map(Object source, Object destination) {

Therefore the error. "void" cannot be streamed.

御守 2025-01-18 16:00:47

类型与编译器错误提示的不匹配,返回的类型为 void 并且不会被收集。我猜 modelMapper 上的 map 方法已重载,您也可以在第二个参数上传递类类型来解决问题。
像这样的东西

Foo foo = modelMapper.map(map, Foo.class);

Types do not match the as compiler error suggests, the returned type is void and will not be collected . I guess the map method on modelMapper is overloaded and you can pass the class type on second argument as well to resolve the issue.
some thing like

Foo foo = modelMapper.map(map, Foo.class);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文