<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)
min 및 max 로 묶인 val 를 반환합니다. 이는 qMax(min, qMin(val, max))와 동일합니다.
예시:
int myValue = 10; int minValue = 2; int maxValue = 6; int boundedValue = qBound(minValue, myValue, maxValue); // boundedValue == 6
[constexpr]
template <typename T> const T &qMax(const T &a, const T &b)
최대 a 및 b 을 반환합니다.
예제:
int myValue = 6; int yourValue = 4; int maxValue = qMax(myValue, yourValue); // maxValue == myValue
[constexpr]
template <typename T> const T &qMin(const T &a, const T &b)
최소 a 및 b 을 반환합니다.
예제:
int myValue = 6; int yourValue = 4; int minValue = qMin(myValue, yourValue); // minValue == yourValue
© 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.