Namespaces
Variants
Actions
(Difference between revisions)

Generating random-value integers in Qt

Jump to: navigation, search
m (Hamishwillee - Bot update - Merge KB into wiki)
m (Text replace - "<code cpp>" to "<code cpp-qt>")
 
(3 intermediate revisions by one user not shown)
Line 36: Line 36:
 
==Source==
 
==Source==
  
<code cpp>
+
<code cpp-qt>
 
#include <QGlobal.h>
 
#include <QGlobal.h>
 
#include <QTime>
 
#include <QTime>
Line 47: Line 47:
 
</code>
 
</code>
  
<code cpp>
+
<code cpp-qt>
  
 
// Create seed for the random
 
// Create seed for the random
Line 63: Line 63:
  
  
  [[Category:Code Snippet]][[Category:MeeGo]] [[Category:Symbian]]
+
  [[Category:Code Snippet]][[Category:MeeGo Harmattan]] [[Category:Symbian]]

Latest revision as of 04:16, 11 October 2012

Article Metadata

Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
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

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.

This page was last modified on 11 October 2012, at 04:16.
1587 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