Java: Different outputs when add/remove short and integer elements in a Set(Java:在集合中添加/删除短元素和整数元素时的不同输出)
问题描述
我不确定如何提出这个问题.但是,这两行代码有什么不同呢?
I wasn't sure on how to ask this question. But, what is the different between these 2 lines of code?
Set<Integer> a = new HashSet<Integer>();
for (int i = 0; i < 100; i++) {
a.add(i);
a.remove(i - 1);
}
System.out.println(a.size());
我预计 99 是输出
输出为 1
Set<Short> a = new HashSet<Short>();
for (Short i = 0; i < 100; i++) {
a.add(i);
a.remove(i - 1);
}
System.out.println(a.size());
我预计 99 是输出
输出为 100
推荐答案
表达式 i - 1 的类型是 int 因为整数算术表达式中的所有操作数都是扩大到至少 int.Setadd(Short) 和 remove(Object) 所以 remove 不需要强制转换/自动装箱代码>调用.因此,您试图从一组 Short 中删除 Integer.
The type of the expression i - 1 is int because all operands in an integer arithmetic expression are widened to at least int. Set<Short> has add(Short) and remove(Object) so there's no casting/autoboxing needed on the remove call. Therefore you are trying to remove Integers from a set of Shorts.
请注意,由于这个原因,声明 Set 几乎没有意义:
Note that for this reason it almost never makes sense to declare a Set<Number>:
final Set<Number> ns = new HashSet<>();
final short s = 1;
ns.add(s);
ns.add(s+0);
ns.add(s+0L);
System.out.println(ns); // prints [1, 1, 1]
作为奖励回合,如果您将 set 实现更改为 TreeSet,魔法就会消失,它会抛出 ClassCastException,从而放弃这个技巧.
As a bonus round, if you change the set implementation to TreeSet, the magic disappears and it throws a ClassCastException, giving away the trick.
在本质上,这个问题与相等是对称关系这一事实有关,它不能区分右手边和左手边.这些语义是 Java 的单一调度方法无法实现的.
Deep down, this issue has to do with the fact that equality is a symmetric relation, which must not distinguish the right hand side from the left hand side. These semantics are impossible to achieve with Java's single-dispatch methods.
这篇关于Java:在集合中添加/删除短元素和整数元素时的不同输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:在集合中添加/删除短元素和整数元素时的不同输出
- 如何使用WebFilter实现授权头检查 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
