vote up 2 vote down star

Hi- I need a function that will return a random integer that can be only -1, 0, or 1. Thanks?

flag

3 Answers

vote up 11 vote down check

As Apocalisp wrote, you could do something like:

import java.util.Random;

Random generator = new Random();
int randomIndex = generator.nextInt( 3 ) - 1;
link|flag
Ha! You beat me by seconds! ;-) – Bob Cross May 23 at 15:14
1  
Oh boo, I was totally first. Showing code wins every time. – Apocalisp May 23 at 15:20
2  
Yes, it does. I was hoping to edge out Justin with the javdoc, though. Next time, I should just go for "First P0st!!!111!!@@One!!" – Bob Cross May 23 at 15:22
1  
First post. Then edit it with pointless code and links to the JavaDoc (just in case anyone doesn't have their favourite JavaDoc location bookmarked). Then replace it with a paraphrase of the second person's correct answer. – Tom Hawtin - tackline May 23 at 15:26
Awesome! At least everyone else can be confident the code works since its the same one-liner :) – Justin Ethier May 23 at 15:26
show 3 more comments
vote up 8 vote down

How about generating a random from 0 to 2 and subtracting 1?

link|flag
Genius!!!!!!11! – Tom Hawtin - tackline May 23 at 15:13
1  
Thought about submitting an Enterprise solution, but it's proprietary. – Apocalisp May 23 at 15:14
1  
Ya, thanks.............. – radWin May 23 at 15:15
Why not generate a random number from 17 to 19 and subtract 18? – Bombe May 23 at 15:53
@Bombe, you've opened the door to a very dark place. Random number from 0 to 1000 modulus 3 - 1? ;-) – Bob Cross May 23 at 17:34
show 1 more comment
vote up 3 vote down

This should help:

Random random = new Random();
int value = random.nextInt(3) - 1;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.