Namespaces
Variants
Actions
Revision as of 13:52, 29 April 2009 by Forum Nokia KB (Talk | contribs)

Generating random-value integers in Qt

Jump to: navigation, search
Article Metadata

Tested with
Devices(s): 5800 XpressMusic

Compatibility
Platform(s): S60 3rd Edition, FP1, FP2, S60 5th Edition

Article
Keywords: qrand
Created: (08 Apr 2009)
Last edited: Forum Nokia KB (29 Apr 2009)

Contents

Overview

This code snippets shows how random integer value in Qt for S60.

Note: In order to use this code, you need to have Qt for S60 installed on your platform.


Preconditions


Source

#include <QGlobal.h>
 
int QMyClass::randInt(int low, int high)
{
// Random number between low and high
return qrand() % ((high + 1) - low) + low;
}
// Random value between 0-100
int randomValue = randInt(0,100);


Postconditions

Number ramdomed.

1471 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved