栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

为什么LongProperty实现Property 但不是财产?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

为什么LongProperty实现Property 但不是财产?

不能同时 实现。

为此,它需要在使用泛型的接口中实现每种方法的两个版本。让我们举一个例子:

bindBidirectional(Property<Long> other) { ... }

在幕后,擦除意味着可以简化为:

bindBidirectional(Property other) { ... }

那么,什么将实现

Property<Number>
Property<Long>
做什么呢?它有两种方法:

bindBidirectional(Property<Long> other) { ... }bindBidirectional(Property<Number> other) { ... }

…在擦除后将编译为两种方法:

bindBidirectional(Property other) { ... }bindBidirectional(Property other) { ... }

这两种方法相互冲突,并且无法在运行时解决它们。

即使您使用了一些编译器技巧来解决此问题,当有人将LongProperty用作原始Property时会发生什么?

Property rawLongProperty = new LongProperty();rawLongProperty.bindBidirectional(someOtherRawProperty);

无法知道

bindDirectional
要解决的两个变体中的哪个。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/495752.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号