微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Java 方法泛型

如何解决Java 方法泛型

我有以下代码

private Set<? extends DecisionGroupDto> parentGroups = new HashSet<>();

public DecisionDto(Decision decision) {
    super(decision);
    if (decision != null) {
        Set<? extends DecisionGroup> parentGroups = decision.getParentGroups();
        if (CollectionUtils.isNotEmpty(parentGroups)) {
            for (DecisionGroup parentGroup : parentGroups) {
                this.parentGroups.add(new DecisionGroupDto(parentGroup));
            }
        }
    }
}

现在是以下行:

this.parentGroups.add(new DecisionGroupDto(parentGroup));

失败并出现以下错误

required type: capture of ? extends DecisionGroupDto
Provided:DecisionGroupDto

如何让 this.parentGroups 不仅接受来自 DecisionGroupDto 的派生类,还接受 DecisionGroupDto 本身?

解决方法

你必须使用 super 而不是 extends

private Set<? extends DecisionGroupDto> parentGroups = new HashSet<>();

public DecisionDto(Decision decision) {
    super(decision);
    if (decision != null) {
        Set<? super DecisionGroup> parentGroups = decision.getParentGroups();
        if (CollectionUtils.isNotEmpty(parentGroups)) {
            for (DecisionGroup parentGroup : parentGroups) {
                this.parentGroups.add(new DecisionGroupDto(parentGroup));
            }
        }
    }
}

要指定类型通配符的下边界类,使用 super 关键字。此关键字表示类型参数是边界类的超类型。添加到这样的列表需要 DecisionGroup 类型的元素、DecisionGroup 的任何子类型或 null(它是每个类型的成员)。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。