Processing, 類JSONArray
中的remove()
用法介紹。
用法
.remove(index)
參數
index
(int)
要移除的元素的索引值
返回
Object
說明
從指定索引位置的JSONArray
中刪除元素。返回與給定索引關聯的值,如果沒有值,則返回 null
。
例子
// The following short JSON file called "data.json" is parsed
// in the code below. It must be in the project's "data" folder.
//
// [
// {
// "id": 0,
// "species": "Capra hircus",
// "name": "Goat"
// },
// {
// "id": 1,
// "species": "Panthera pardus",
// "name": "Leopard"
// },
// {
// "id": 2,
// "species": "Equus zebra",
// "name": "Zebra"
// }
// ]
JSONArray values;
void setup() {
values = loadJSONArray("data.json");
values.remove(0); // Remove the array's first element
for (int i = 0; i < values.size(); i++) {
JSONObject animal = values.getJSONObject(i);
int id = animal.getInt("id");
String species = animal.getString("species");
String name = animal.getString("name");
println(id + ", " + species + ", " + name);
}
}
// Sketch prints:
// 1, Panthera pardus, Leopard
// 2, Equus zebra, Zebra
相關用法
- Processing JSONArray.getIntArray()用法及代碼示例
- Processing JSONArray.getFloat()用法及代碼示例
- Processing JSONArray.setString()用法及代碼示例
- Processing JSONArray.setFloat()用法及代碼示例
- Processing JSONArray.getString()用法及代碼示例
- Processing JSONArray.setBoolean()用法及代碼示例
- Processing JSONArray.getJSONArray()用法及代碼示例
- Processing JSONArray.setJSONObject()用法及代碼示例
- Processing JSONArray.getJSONObject()用法及代碼示例
- Processing JSONArray.size()用法及代碼示例
- Processing JSONArray.isNull()用法及代碼示例
- Processing JSONArray.setInt()用法及代碼示例
- Processing JSONArray.getInt()用法及代碼示例
- Processing JSONArray.getBoolean()用法及代碼示例
- Processing JSONArray.setJSONArray()用法及代碼示例
- Processing JSONArray.getStringArray()用法及代碼示例
- Processing JSONArray用法及代碼示例
- Processing JSONObject.setJSONArray()用法及代碼示例
- Processing JSONObject用法及代碼示例
- Processing JSONObject.isNull()用法及代碼示例
- Processing JSONObject.setString()用法及代碼示例
- Processing JSONObject.setJSONObject()用法及代碼示例
- Processing JSONObject.getString()用法及代碼示例
- Processing JSONObject.getJSONArray()用法及代碼示例
- Processing JSONObject.getJSONObject()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 JSONArray.remove()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。