Namespaces
Variants
Actions
Revision as of 09:23, 8 April 2009 by tepaa (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Generating random-value integers in Qt

Jump to: navigation, search
Article Metadata

Tested with
Devices(s): 5800 XpressMusic

Compatibility
Platform(s): Qt

Article
Keywords: qrand
Created: (08 Apr 2009)
Last edited: tepaa (08 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.

1590 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