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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。