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


Processing null用法及代碼示例


Processing, null用法介紹。

說明

用於表示目標的特殊值不是有效的數據元素。在處理中,您可能會在嘗試訪問不存在的數據時遇到關鍵字null

例子

String content = "It is a beautiful day.";
String[] results;  // Declare empty String array

results = match(content, "orange");
// The match statement above will fail to find
// the word "orange" in the String 'content', so
// it will return a null value to 'results'.

if (results == null) {
  println("Value of 'results' is null.");  // This line is printed
} else {
  println("Value of 'results' is not null!");  // This line is not printed
}

相關用法


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