Processing, 类JSONArray
中的isNull()
用法介绍。
用法
.isNull(index)
参数
index
(int)
必须介于 0 和 length() - 1 之间
返回
boolean
说明
确定与索引关联的值是否为 null
,即没有定义的值 ( false
) 或者它是否有值 ( true
)。
例子
JSONArray json;
void setup() {
json = new JSONArray();
json.setInt(0, 32);
json.setString(1, null);
if (json.isNull(1) == true) {
println("This element is undefined");
} else {
println("The value is " + json.getString(1));
}
}
相关用法
- Processing JSONArray.getIntArray()用法及代码示例
- Processing JSONArray.getFloat()用法及代码示例
- Processing JSONArray.setString()用法及代码示例
- Processing JSONArray.setFloat()用法及代码示例
- Processing JSONArray.remove()用法及代码示例
- Processing JSONArray.getString()用法及代码示例
- Processing JSONArray.setBoolean()用法及代码示例
- Processing JSONArray.getJSONArray()用法及代码示例
- Processing JSONArray.setJSONObject()用法及代码示例
- Processing JSONArray.getJSONObject()用法及代码示例
- Processing JSONArray.size()用法及代码示例
- Processing JSONArray.setInt()用法及代码示例
- Processing JSONArray.getInt()用法及代码示例
- Processing JSONArray.getBoolean()用法及代码示例
- Processing JSONArray.setJSONArray()用法及代码示例
- Processing JSONArray.getStringArray()用法及代码示例
- 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.isNull()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。