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 new用法及代码示例
- Processing normal()用法及代码示例
- Processing nf()用法及代码示例
- Processing norm()用法及代码示例
- Processing noiseSeed()用法及代码示例
- Processing noFill()用法及代码示例
- Processing noise()用法及代码示例
- Processing noTint()用法及代码示例
- Processing noStroke()用法及代码示例
- Processing nfp()用法及代码示例
- Processing nfs()用法及代码示例
- Processing noClip()用法及代码示例
- Processing noiseDetail()用法及代码示例
- Processing nfc()用法及代码示例
- Processing noSmooth()用法及代码示例
- Processing noLoop()用法及代码示例
- Processing noCursor()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
- Processing () (parentheses)用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 null。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。