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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。