英文:
Need help about wildcard generic types in Java
问题
我正在学习Java中的泛型编程。
我在《Java核心技术》(第9版)中看到了以下这些图表:
而在《Java编程导论》第十版综合版中,我看到了这些图表:
但我认为应该是这样的:
有人可以告诉我我是否正确吗?
英文:
I am learning generic programming in java.
I saw these charts in Core Java (Edition 9):
And I saw these charts in Introduction to Java Programming Comprehensive Version Tenth Edition:
But I believe it should be this instead:
Could someone tell me whether I am right?
答案1
得分: 3
是的,你是正确的。这个错误已经在本版本的勘误表中列出(对于将来类似的确认可能会有帮助):
> 第19章
>
> 第749页,图19.6,在最后一个"A<B' subclass>"更改为"A<B' superclass>"。
英文:
Yes, you are correct. The mistake is listed in the Errata for this edition (which might be useful for similar confirmations in the future):
> Chapter 19
>
> Page 749, Figure 19.6, change the last "A<B' subclass>" to "A<B'
> superclass>".
答案2
得分: 0
是的,它应该从 A<B' s subclass>
更改为 A<B' s superclass>
。
英文:
Yes, it should change from A<B' s subclass>
to A<B' s superclass>
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论