Processing, max()
用法介紹。
用法
max(a, b)
max(a, b, c)
max(list)
參數
a
(int, float)
第一個要比較的數字b
(int, float)
要比較的第二個數字c
(int, float)
第三個要比較的數字list
(int[], float[])
要比較的數字數組
返回
int or float
說明
確定數字序列中的最大值,然後返回該值。 max()
接受兩個或三個 float
或 int
值作為參數,或任何長度的數組。
例子
int a = max(5, 9); // Sets 'a' to 9
int b = max(-4, -12); // Sets 'b' to -4
float c = max(12.3, 230.24); // Sets 'c' to 230.24
int[] values = { 9, -4, 362, 21 }; // Create an array of ints
int d = max(values); // Sets 'd' to 362
有關的
相關用法
- Processing match()用法及代碼示例
- Processing matchAll()用法及代碼示例
- Processing map()用法及代碼示例
- Processing mag()用法及代碼示例
- Processing mouseY用法及代碼示例
- Processing minute()用法及代碼示例
- Processing mouseMoved()用法及代碼示例
- Processing mouseDragged()用法及代碼示例
- Processing mouseX用法及代碼示例
- Processing millis()用法及代碼示例
- Processing modelX()用法及代碼示例
- Processing month()用法及代碼示例
- Processing mouseButton用法及代碼示例
- Processing modelY()用法及代碼示例
- Processing mouseWheel()用法及代碼示例
- Processing movieEvent()用法及代碼示例
- Processing mouseClicked()用法及代碼示例
- Processing mouseReleased()用法及代碼示例
- Processing mousePressed()用法及代碼示例
- Processing mousePressed用法及代碼示例
- Processing modelZ()用法及代碼示例
- Processing min()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 max()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。