貪心機(jī)器學(xué)習(xí)高階訓(xùn)練營(yíng)2022
2022-12-07 15:48 作者:三國(guó)盡歸許佳琪 | 我要投稿
// class java.lang.Integer
1.2.2 方案2
聲明數(shù)組的時(shí)候,聲明類(lèi)型改為包裝類(lèi)型
Integer[] integerArr = {1, 2, 3};List integerList = Arrays.asList(integerArr);System.out.println(integerList.size()); System.out.println(integerList.get(0).getClass());// 3// class java.lang.Integer
作者:陳琰AC
鏈接:https://www.jianshu.com/p/ebaf67828dbc
來(lái)源:簡(jiǎn)書(shū)
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán),非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
標(biāo)簽: