Processing, final
用法介紹。
說明
用於說明無法更改值、類或方法的關鍵字。如果final
關鍵字用於定義變量,則該變量不能在程序內更改。當用於定義類時,final
類不能被子類化。當用於定義函數或方法時,final
方法不能被子類覆蓋。
此關鍵字是 Java 編程的重要組成部分,通常不與 Processing 一起使用。有關更多信息,請參閱 Java 語言參考或教程。
例子
final float constant = 12.84753;
println(constant); // Prints "12.84753" to the console
constant += 12.84; // ERROR! It's not possible to change a "final" value
相關用法
- Processing fill()用法及代碼示例
- Processing filter()用法及代碼示例
- Processing frustum()用法及代碼示例
- Processing frameRate用法及代碼示例
- Processing frameRate()用法及代碼示例
- Processing false用法及代碼示例
- Processing fullScreen()用法及代碼示例
- Processing floor()用法及代碼示例
- Processing float用法及代碼示例
- Processing frameCount用法及代碼示例
- Processing float()用法及代碼示例
- Processing for用法及代碼示例
- Processing focused用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 final。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。