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


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


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

用法

  • .setString(index, value)

參數

  • index (int) 一個索引值
  • value (String) 要分配的值

返回

  • JSONArray

說明

將新值插入到指定索引位置的JSONArray。如果指定位置已存在值,則新值將覆蓋舊值。如果給定索引大於 JSONArray 的長度,則將根據需要添加空元素以填充它。

例子

JSONArray json;

void setup() {

  json = new JSONArray();

  json.setInt(0, 32);
  json.setFloat(1, 1.5);
  json.setString(2, "grape");
  json.setBoolean(3, true);

  println(json);
}

// Sketch prints:
// [
//   32,
//   1.5,
//   "grape",
//   true
// ]

相關用法


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