IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

<QtMinMax>

Qt Core Reference Documentation.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

Function Documentation

 

[constexpr] const T &qBound(const T &min, const T &val, const T &max)

Returns val bounded by min and max. This is equivalent to qMax(min, qMin(val, max)).

Example:

 
Sélectionnez
int myValue = 10;
int minValue = 2;
int maxValue = 6;

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

See Also

See also qMin(), qMax()

[constexpr] const T &qMax(const T &a, const T &b)

Returns the maximum of a and b.

Example:

 
Sélectionnez
int myValue = 6;
int yourValue = 4;

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

See Also

See also qMin(), qBound()

[constexpr] const T &qMin(const T &a, const T &b)

Returns the minimum of a and b.

Example:

 
Sélectionnez
int myValue = 6;
int yourValue = 4;

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

See Also

See also qMax(), qBound()

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+