BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 11-11-2007, 06:45 AM   #1
radski
New Member
 
Join Date: Oct 2006
Model: 8700
Carrier: Voda
Posts: 10
Default Random numbers not random?

Please Login to Remove!

Hello,

possibly a newbie question. I'm using the following method to get random numbers:

public int getRandomInt(int lowerlimit, int upperlimit){
Random generator = new Random();
generator.setSeed(System.currentTimeMillis());
// add +1 to include the upper limit
// this is bit shift to right and basicly does that there is no negative numbers so you can take mod
int nr = (generator.nextInt() >>> 1) % (upperlimit +1 - lowerlimit) + lowerlimit;
return nr;
}

However, if I call it more than once in the same run of the app I always get the same "random" number.

Any ideas?

Cheers,

R.
Offline  
Old 11-11-2007, 11:24 AM   #2
patrickh
Thumbs Must Hurt
 
Join Date: Sep 2004
Model: 8700
Carrier: T-mo
Posts: 162
Default

That's because you are setting the seed to the current millis every time you call the function. So if you call the same function within the same ms, you get the same numbers.

The proper way is create the random generator only once and keep calling nextInt() only.
Offline  
Old 11-11-2007, 06:50 PM   #3
genvej
Thumbs Must Hurt
 
Join Date: Jul 2007
Model: 8800
PIN: N/A
Carrier: TDC
Posts: 115
Default

Quote:
Originally Posted by patrickh View Post
That's because you are setting the seed to the current millis every time you call the function. So if you call the same function within the same ms, you get the same numbers.

The proper way is create the random generator only once and keep calling nextInt() only.
i almost second that... only that your first random will always show the same number regardless of what amount of ms used... however, calling the nextInt will initiate a proper random number
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


JCB PARTS - GENUINE COIL (PART NUMBER: 25/221056) picture

JCB PARTS - GENUINE COIL (PART NUMBER: 25/221056)

$247.84



JCB PARTS - GENUINE Coil (PART NUMBER: 400/11237) picture

JCB PARTS - GENUINE Coil (PART NUMBER: 400/11237)

$217.84



JCB PARTS - GENUINE COIL 12V  (PART NUMBER: 25/221054) picture

JCB PARTS - GENUINE COIL 12V (PART NUMBER: 25/221054)

$233.84



New Rexroth coil 1837001227 picture

New Rexroth coil 1837001227

$214.00



REDHAT SOLENOID VALVE COIL ASCO MP-C-134B, 250 404-605 picture

REDHAT SOLENOID VALVE COIL ASCO MP-C-134B, 250 404-605

$49.95



Ignition Coil For Briggs And Stratton 395491 397358; IBS3002 picture

Ignition Coil For Briggs And Stratton 395491 397358; IBS3002

$40.22







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.