Generating random-value integers in Qt
tanjaluodes
(Talk | contribs) m |
kiran10182
(Talk | contribs) m |
||
| Line 12: | Line 12: | ||
==Overview== | ==Overview== | ||
| − | This code snippet shows how to generate a random integer in Qt for | + | This code snippet shows how to generate a random integer in Qt for Symbian. |
| − | '''Note''': In order to use this code, you need to have Qt for | + | '''Note''': In order to use this code, you need to have Qt for Symbian installed on your platform. |
==Preconditions== | ==Preconditions== | ||
| − | * Install latest Qt for | + | * Install latest Qt for Symbian see [[Qt_for_Symbian_-_Installation_packages|Qt for Symbian - Installation packages]] |
* Check this link for installation guide: [http://pepper.troll.no/s60prereleases/doc/install-s60.html How to install the package]. | * Check this link for installation guide: [http://pepper.troll.no/s60prereleases/doc/install-s60.html How to install the package]. | ||
| − | * Go through this article: [[Getting started with Qt for | + | * Go through this article: [[Getting started with Qt for Symbian]] |
| − | + | ||
==Source== | ==Source== | ||
Revision as of 16:48, 5 May 2010
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: (29 Apr 2009)
Last edited: kiran10182
(05 May 2010)
Contents |
Overview
This code snippet shows how to generate a random integer in Qt for Symbian.
Note: In order to use this code, you need to have Qt for Symbian installed on your platform.
Preconditions
- Install latest Qt for Symbian see Qt for Symbian - Installation packages
- Check this link for installation guide: How to install the package.
- Go through this article: Getting started with Qt for Symbian
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.

