日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Java Programming Test Question 3

發(fā)布時(shí)間:2025/5/22 166 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java Programming Test Question 3 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
import java.util.HashSet;public class JPTQuestion3 {public static void main(String[] args) {HashSet shortSet = new HashSet();for (short i = 0; i < 100; i++) {shortSet.add(i);shortSet.remove(i - 1);}System.out.println(shortSet.size());} }

輸出:100。

如果把循環(huán)變量改為int型的, 那么

import java.util.HashSet;public class JPTQuestion3 {public static void main(String[] args) {HashSet shortSet = new HashSet();for (int i = 0; i < 100; i++) {shortSet.add(i);shortSet.remove(i-1);}System.out.println(shortSet.size());} }

輸出:1

?

這是什么坑啊。而且,這HashSet竟然不指定泛型就在用了-_-

?

為什么范圍比int小的的就不會(huì)被移除,而大于等于int范圍的就會(huì)被移除?泛型指定與否都與結(jié)果無關(guān)。

?

?

原因:.........................................i-1是int型的,HashSet里面存的是Short類型的,所以,沒有一個(gè)數(shù)字被移除。

官方解釋:自動(dòng)裝箱的作用

Java Programming Test Question 3 Answer and Explanation

The size of the shortSet will be 100. Java Autoboxing feature has been introduced in JDK 5, so while adding the short to HashSet<Short> it will automatically convert it to Short object. Now i-1 will be converted to int while evaluation and after that it will autoboxed to Integer object but there are no Integer object in the HashSet, so it will not remove anything from the HashSet and finally its size will be 100.

?

轉(zhuǎn)載于:https://www.cnblogs.com/fuzhihong0917/p/5703678.html

總結(jié)

以上是生活随笔為你收集整理的Java Programming Test Question 3的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。