Generating random-value integers in Qt
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Article
Keywords: qrand
Created: tepaa
(08 Apr 2009)
Last edited: hamishwillee
(11 Oct 2012)
Contents |
Overview
This code snippet shows how to generate a random integer in Qt.
Preconditions
- Install Qt SDK
Source
#include <QGlobal.h>
#include <QTime>
int QMyClass::randInt(int low, int high)
{
// Random number between low and high
return qrand() % ((high + 1) - low) + low;
}
Postconditions
A random number is given.

