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


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


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

用法

  • .getFloat(key)
  • .getFloat(key, defaultValue)

參數

  • key (String) 一個關鍵字符串

返回

  • float

說明

獲取與指定鍵關聯的float

例子

// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// {
//   "count": 32,
//   "weight": 1.13,
//   "name": "grape",
//   "isFruit": true
// }

JSONObject json;

void setup() {

  json = loadJSONObject("data.json");

  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:
// 32, 1.13, grape, true

相關用法


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