當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing JSONArray.size()用法及代碼示例


Processing, 類JSONArray中的size()用法介紹。

用法

  • .size()

返回

  • int

說明

獲取JSONArray 中的元素總數(包括空元素)。

例子

// 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");

  println("JSONArray size is " + values.size());
}

// Sketch prints:
// JSONArray size is 3

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 JSONArray.size()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。