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


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


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

用法

  • .getIntArray()

返回

  • int[]

說明

將整個 JSONArray 作為 ints 的數組返回。 (數組中的所有值都必須是 int 類型。)

例子

// The following short JSON file called "data.json" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// [ 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144 ]

JSONArray json;

void setup() {

  json = loadJSONArray("data.json");

  int[] values = json.getIntArray();

  println(values);
}

// Sketch prints:
// [0] 0
// [1] 1
// [2] 1
// [3] 2
// [4] 3
// [5] 5
// [6] 8
// [7] 13
// [8] 21
// [9] 34
// [10] 55
// [11] 89
// [12] 144

相關用法


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