Generating random-value integers in Qt
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot change of template (Template:CodeSnippet) - now using Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Addition to article of: Category:MeeGo Category:Symbian. (Add platform categories)) |
||
| Line 56: | Line 56: | ||
| − | [[Category:Code Examples]] | + | [[Category:Code Examples]][[Category:MeeGo]] [[Category:Symbian]] |
Revision as of 08:31, 15 February 2012
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Platform Security
Capabilities: )
Article
Keywords: qrand
Created: tepaa
(29 Apr 2009)
Last edited: hamishwillee
(15 Feb 2012)
Contents |
Overview
This code snippet shows how to generate a random integer in Qt.
Preconditions
- Install Nokia 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;
}
// Create seed for the random
// That is needed only once on application startup
QTime time = QTime::currentTime();
qsrand((uint)time.msec());
// Get random value between 0-100
int randomValue = randInt(0,100);
Postconditions
A random number is given.

