length 長度
reversed 翻轉
isempty 是否為空
isnotempty 是否不為空
add 增加
addall 拼接陣列
indexof 查詢 傳入具體值
remove 刪除 傳入具體值
removeat 刪除 傳入索引值
fillrange 修改
insert(index,value); 指定位置插入
insertall(index,list) 指定位置插入list
tolist() 其他型別轉換成list
join() list轉換成字串
split() 字串轉化成list
上面的這些api在其他語言中也類似。下面列舉幾個比較特殊一點的。
voidmain() );
}
voidmain() ).tolist();
print(newlist);
}// 輸出結果:[2, 4, 6]
voidmain() ).tolist();
print(newlist);
}// 輸出結果:[6, 7, 8, 9]
voidmain() );
print(result);}//
輸出結果:true
voidmain() );
print(result);}//
輸出結果:false
list中的比較
一說到list的的確不知道寫些什麼。我覺得別人總結的比我寫的還要好很多。list 元素是有序的 怎麼存的就怎麼取出來,順序不會亂 元素可以重複 角標1上有個3,角標2上也可以有個3 因為該集合體系有索引,arraylist 底層的資料結構使用的是陣列結構 陣列長度是可變的百分之五十延長 特點是查詢很...
js的特殊比較
首先下面幾種情況,為false false null undefined 即空字串 0 注意 0 是true 0 0 也是true nan另外undefined是false,但是 undefined false 和 false nan 以及 undefined nan 判斷也是false 物件相比 ...
Python中list的比較
在python中,執行如下的 nan float nan print nan nan print nan nan 其輸出結果分別為false 和 true,於是決定去檢視相關的 查詢原因。首先,float中nan在ieee標準中有約定,與任何值都不相等,所以主要需要確認的就是列表的比較規則。stat...