What does lt;lt;= operator mean in Java?(lt;lt;= 运算符在 Java 中是什么意思?)
问题描述
您能否解释一下来自 HashMap 构造函数 特别是这一行
Can you please explain this code snippet from HashMap constructor specifically the line
容量<<= 1:
capacity <<= 1:
// Find a power of 2 >= initialCapacity
198 int capacity = 1;
199 while (capacity < initialCapacity)
200 capacity <<= 1;
推荐答案
相当于capacity = capacity <<<1;
.
该操作将容量的位向左移动一位,相当于乘以 2.
It is equivalent to capacity = capacity << 1;
.
That operation shifts capacity's bits one position to the left, which is equivalent to multiplying by 2.
您发布的特定代码找到大于 initialCapacity
的 2 的最小幂.
The specific code you posted finds the smallest power of 2 which is larger than initialCapacity
.
所以如果 initialCapacity
为 27,例如 capacity
在循环后将是 32 (2^5).
So if initialCapacity
is 27, for example, capacity
will be 32 (2^5) after the loop.
这篇关于<<= 运算符在 Java 中是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:<<= 运算符在 Java 中是什么意思?


基础教程推荐
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01