有界通配符不适用于映射中插入的列表

发布于 2024-12-07 17:03:04 字数 501 浏览 0 评论 0 原文

以下代码解释了我的问题:

interface f1 {}

interface f2 extends f1{}


1. List<? extends f1> l1 = new ArrayList<f2>();

2. Map<String, ? extends f1> m1 = new HashMap<String, f2>();

3. Map<String, List<? extends f1>> m2 = new HashMap<String, List<f2>>();

1 号和 2 号可以工作,但不行。 3 在eclipse上报错。它说: 类型不匹配:无法从 HashMap> 转换映射<字符串,列表> 你能帮我找出原因吗?

The following code explains my problem:

interface f1 {}

interface f2 extends f1{}


1. List<? extends f1> l1 = new ArrayList<f2>();

2. Map<String, ? extends f1> m1 = new HashMap<String, f2>();

3. Map<String, List<? extends f1>> m2 = new HashMap<String, List<f2>>();

No. 1 and 2 work but no. 3 gives an error on eclipse. It says: Type mismatch: cannot convert from HashMap<String,List<f2>> to Map<String,List<? extends f1>> Could you please help me figure out why.

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

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

发布评论

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

评论(1

樱花坊 2024-12-14 17:03:04

使用

Map<String, ? extends List<? extends f1>> m2 = new HashMap<String, List<f2>>();

Use

Map<String, ? extends List<? extends f1>> m2 = new HashMap<String, List<f2>>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文