我想找...

搜尋

分享

目錄

min()

[Math]

描述

Calculates the minimum of two numbers.

語法

min(x, y)

參數

X: the first number, any data type
y: the second number, any data type

回傳

The smaller of the two numbers.

範例程式碼

sensVal = min(sensVal, 100); // assigns sensVal to the smaller of sensVal or 100
                             // ensuring that it never gets above 100.

注意

Perhaps counter-intuitively, max() is often used to constrain the lower end of a variable’s range, while min() is used to constrain the upper end of the range.

Warning

Because of the way the min() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results

min(a++, 100);   // avoid this - yields incorrect results
 
a++;
min(a, 100);    // use this instead - keep other math outside the function

參考


語法參考主頁面

86Duino 參考的文本是根據 知識共享署名-相同方式分享 3.0 許可證,部分文本是從 Arduino 參考 修改的。 參考中的代碼示例已發佈到公共領域。

返回頂端