Processing, case
用法介紹。
用法
case name: statements
參數
name
字節、字符或intstatements
一項或多項有效陳述
說明
表示要使用 switch
結構中的參數評估的不同名稱。
例子
char letter = 'B';
switch(letter) {
case 'A':
println("Alpha"); // Does not execute
break;
case 'B':
println("Bravo"); // Prints "Bravo"
break;
default:
println("Zulu"); // Does not execute
break;
}
相關用法
- Processing camera()用法及代碼示例
- Processing catch用法及代碼示例
- Processing captureEvent()用法及代碼示例
- Processing clip()用法及代碼示例
- Processing curveDetail()用法及代碼示例
- Processing char()用法及代碼示例
- Processing ceil()用法及代碼示例
- Processing curveVertex()用法及代碼示例
- Processing concat()用法及代碼示例
- Processing continue用法及代碼示例
- Processing color()用法及代碼示例
- Processing copy()用法及代碼示例
- Processing createFont()用法及代碼示例
- Processing cos()用法及代碼示例
- Processing circle()用法及代碼示例
- Processing char用法及代碼示例
- Processing color用法及代碼示例
- Processing createImage()用法及代碼示例
- Processing createShape()用法及代碼示例
- Processing class用法及代碼示例
- Processing curve()用法及代碼示例
- Processing curveTightness()用法及代碼示例
- Processing createInput()用法及代碼示例
- Processing constrain()用法及代碼示例
- Processing clear()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 case。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。