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


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


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.org大神的英文原創作品 JSONArray.isNull()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。