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 JSONArray.getInt()用法及代码示例
- Processing JSONArray.getFloat()用法及代码示例
- Processing JSONArray.getString()用法及代码示例
- Processing JSONArray.getJSONArray()用法及代码示例
- Processing JSONArray.getJSONObject()用法及代码示例
- Processing JSONArray.getBoolean()用法及代码示例
- Processing JSONArray.getStringArray()用法及代码示例
- Processing JSONArray.setString()用法及代码示例
- Processing JSONArray.setFloat()用法及代码示例
- Processing JSONArray.remove()用法及代码示例
- Processing JSONArray.setBoolean()用法及代码示例
- Processing JSONArray.setJSONObject()用法及代码示例
- Processing JSONArray.size()用法及代码示例
- Processing JSONArray.isNull()用法及代码示例
- Processing JSONArray.setInt()用法及代码示例
- Processing JSONArray.setJSONArray()用法及代码示例
- Processing JSONArray用法及代码示例
- Processing JSONObject.setJSONArray()用法及代码示例
- Processing JSONObject用法及代码示例
- Processing JSONObject.isNull()用法及代码示例
- Processing JSONObject.setString()用法及代码示例
- Processing JSONObject.setJSONObject()用法及代码示例
- Processing JSONObject.getString()用法及代码示例
- Processing JSONObject.getJSONArray()用法及代码示例
- Processing JSONObject.getJSONObject()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 JSONArray.getIntArray()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。