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


Processing JSONObject.setInt()用法及代碼示例


Processing, 類JSONObject中的setInt()用法介紹。

用法

  • .setInt(key, value)

參數

  • key (String) 一個關鍵字符串
  • value (int) 要分配的值

返回

  • JSONObject

說明

將新的鍵/整數對插入JSONObject,或者,如果具有指定鍵的值已經存在,則分配一個新值。

例子

JSONObject json;

void setup() {

  json = new JSONObject();
  
  json.setInt("count", 88);
  json.setFloat("weight", 35.432);
  json.setString("name", "celery");
  json.setBoolean("isFruit", false);

  int count = json.getInt("count");
  float weight = json.getFloat("weight");
  String name = json.getString("name");
  boolean isFruit = json.getBoolean("isFruit");

  println(count + ", " + weight + ", " + name + ", " + isFruit);
}

// Sketch prints:
// 88, 35.432, celery, false

相關用法


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