当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。