<QtMinMax> 代理页面

函数

const T &qBound(const T &min, const T &val, const T &max)
const T &qMax(const T &a, const T &b)
const T &qMin(const T &a, const T &b)

函数文档

[constexpr] template <typename T> const T &qBound(const T &min, const T &val, const T &max)

返回以minmax 为界的val 。这等同于qMax(min,qMin(val,max)) 。

举例说明:

int myValue = 10;
int minValue = 2;
int maxValue = 6;

int boundedValue = qBound(minValue, myValue, maxValue);
// boundedValue == 6

另请参阅 qMin() 和qMax()。

[constexpr] template <typename T> const T &qMax(const T &a, const T &b)

返回ab 的最大值。

示例:

int myValue = 6;
int yourValue = 4;

int maxValue = qMax(myValue, yourValue);
// maxValue == myValue

另请参见 qMin() 和qBound()。

[constexpr] template <typename T> const T &qMin(const T &a, const T &b)

返回ab 的最小值。

示例:

int myValue = 6;
int yourValue = 4;

int minValue = qMin(myValue, yourValue);
// minValue == yourValue

另请参见 qMax() 和qBound()。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.