C 陣列 常用方法及屬性(24)

2022-09-23 23:24:13 字數 492 閱讀 8326

陣列長度:陣列名.length 清除元素值:array.clear

複製元素: array.copy 陣列名.copyto 

轉殖:陣列名.clone

查詢元素: array.indexof array.lastindexof 排序: array.sort

反** array.reverse

查詢重複元素

int ticket = new int[7];

ticket[0]=5;

ticket[1]=8;

//儲存乙個8到陣列裡,先要知道8在 ticket 裡存不存在

//看元素有沒有相同

//返回相同元素第乙個匹配項的索引

array.indexof(陣列名,8);

//如果沒有相同元素

//返回-1

array.indexof(陣列名,3);

//返回相同元素最後乙個匹配項的索引

array.lastindexof()

javascript陣列中常用方法及屬性。

array.prototype.splice index,count,item1 item2 刪除或新增指定的專案 會改變原始陣列 index 要刪除或新增的專案位置 0 開始 負數則從陣列結尾處算起。count 要刪除的數量 為 0 則不會刪除。item1 item2 次要可寫 向陣列新增新的專案...

Ajax方法及常用屬性

id click funtion async true 預設 非同步提交 traditional true,表示傳遞的是陣列 datatype text 預期伺服器返回的資料型別 string,text,json,xml,html,script,success function data else ...

Map 常用屬性及方法

1.size屬性 返回map結構的成員總數 const map new map name 張三 title author console.log map.size 2 2.set 和get 3.has方法 返回乙個布林值,判斷某個鍵是否在當前map物件當中 map.has name true 4.d...