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


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


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

用法

  • .setJSONObject(index, value)

參數

  • index (int) 要定位的索引值
  • value (JSONObject) 要分配的值

返回

  • JSONArray

說明

使用索引值設置JSONObject 的值。

例子

JSONArray json;

void setup() {

  json = new JSONArray();

  JSONObject lion = new JSONObject();
  lion.setInt("id", 0);
  lion.setString("species", "Panthera leo");
  
  json.setJSONObject(0, lion);

  JSONObject zebra = new JSONObject();
  zebra.setInt("id", 1);
  zebra.setString("species", "Equus zebra");
  
  json.setJSONObject(1, zebra);

  println(json);
}

// Sketch prints:
// [
//   {
//     "id": 0,
//     "species": "Panthera leo"
//   },
//   {
//     "id": 1,
//     "species": "Equus zebra"
//   }
// ]

相關用法


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