vote up 1 vote down star

Am I looking too far to see something as simple as pick a number: 0 or 1?

		Random rand = new Random();

		if (rand.NextDouble() == 0)
		{
			lnkEvents.CssClass = "selected";
		}
		else
		{
			lnkNews.CssClass = "selected";
		}
flag

2  
All the solutions below, have you create a new Random object. That is fine unless you create a bunch of them very quickly. If you do, then there is a good chance they will all have the same random seed, and you will get the same result over and over. To avoid the issue, create a Random somewhere in your program and pass it around. – Jake Pearson Sep 29 at 15:09

4 Answers

vote up 19 vote down check
            Random rand = new Random();

            if (rand.Next(0, 2) == 0)
            {
                    lnkEvents.CssClass = "selected";
            }
            else
            {
                    lnkNews.CssClass = "selected";
            }

Random.Next picks a random integer between the lower bound (inclusive) and the upper bound (exclusive).

link|flag
This is the one I would go for. – RichardOD Sep 29 at 15:01
3  
Note: Random rand = new Random(); should, ideally, be stuck somewhere else, not right above the call to rand.Next. Ideally, it should be initialized once. – Brian Sep 29 at 16:10
vote up 16 vote down

If you want 50/50 probability, I suggest:

            Random rand = new Random();

            if (rand.NextDouble() >= 0.5)
            {
                    lnkEvents.CssClass = "selected";
            }
            else
            {
                    lnkNews.CssClass = "selected";
            }
link|flag
Yeap- currently the probability is nowhere near that. :-). – RichardOD Sep 29 at 14:57
vote up 3 vote down

Random.NextDouble() will select any double number from 0 but less than 1.0. Most of these numbers are not zero, so your distribution will not be as even as you expect.

link|flag
6  
"not be as even as you expect" is understatement of the year. Virtually all generated results would be 1. – Godeke Sep 29 at 14:56
For the record: I've never seen a zero being returned by a PRNG. And I've tested them a lot a few months ago :-) – Johannes Rössel Sep 29 at 19:45
vote up 2 vote down

It seems like what you're wanting to do (choose between two values) is more clearly expressed by using the Next method, instead of the NextDouble method.

const int ExclusiveUpperBound = 2;
if (new Random().Next(ExclusiveUpperBound) == 0)

The value produced is "greater than or equal to zero, and less than" ExclusiveUpperBound.

link|flag

Your Answer

Get an OpenID
or

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