This is a very strange problem.

Here is my code:

//Function to get random number
public static int RandomNumber(int min, int max)
{
    Random random = new Random();
    return random.Next(min, max);
}

How I call it:

byte[] mac = new byte[6];
for (int x = 0; x < 6; ++x)
    mac[x] = (byte)(Misc.RandomNumber((int)0xFFFF, (int)0xFFFFFF) % 256);

Problem:

If I step that loop with the debugger during runtime I get different values(which is what I want). However, if I put a breakpoint two lines below that code,all members of the "mac" array have equal value.

Why does that happen?

link|improve this question

(reply to follow-on question added in comments) – Marc Gravell Apr 20 '09 at 12:36
feedback

5 Answers

up vote 145 down vote accepted

Every time you do new Random() it is initialized using the clock. This means that in a tight loop you get the same value lots of times. You should keep a single Random instance and keep using Next on the same instance.

//Function to get random number
private static readonly Random random = new Random();
private static readonly object syncLock = new object();
public static int RandomNumber(int min, int max)
{
    lock(syncLock) { // synchronize
        return random.Next(min, max);
    }
}

Edit (see comments): why do we need a lock here?

Basically, Next is going to change the internal state of the Random instance. If we do that at the same time from multiple threads, you could argue "we've just made the outcome even more random", but what we are actually doing is potentially breaking the internal implementation, and we could also start getting the same numbers from different threads, which might be a problem - and might not. The guarantee of what happens internally is the bigger issue, though; since Random does not make any guarantees of thread-safety. Thus there are two valid approaches:

  • synchronize so that we don't access it at the same time from different threads
  • use different Random instances per thread

either can be fine; but mutating a single instance from multiple callers at the same time is just asking for trouble.

The lock achieves the first (and simpler) of these approaches; however, another approach might be:

private static readonly ThreadLocal<Random> appRandom
     = new ThreadLocal<Random>(() => new Random());

this is then per-thread, so you don't need to synchronize.

link|improve this answer
4  
+1 for correct. Shoot, you beat me to it. :) – Greg D Apr 20 '09 at 12:13
23  
When I grow up. I want to answer Qs as fast as you. LOL. +1 – Jose Basilio Apr 20 '09 at 12:16
I'm not sure this is the answer in this case, since the question states that the function is working properly when there is no breakpoints near this segment of the code. Of course I agree that he should use one instance of Random object, however I don't think this answers his question. – David Božjak Apr 20 '09 at 12:18
3  
@Rekreativc - no, re-read it: it is working only when there are break-points, which cause a delay and thus provide different seeds. Without the break-points, everything is equal, i.e. not random, i.e. broken. – Marc Gravell Apr 20 '09 at 12:19
1  
Certainly; it synchronizes access, so that if multiple threads are calling your static "RandomNumber" method, they don't trip over each-other and cause an error. Only one thread will ever be inside the "lock" statement at once, since they are all sharing a single lock object (syncLock). – Marc Gravell Apr 20 '09 at 12:31
show 16 more comments
feedback

Mark's solution can be quite expensive since it needs to synchronize everytime.

We can get around the need for synchronization by using the thread-specific storage pattern:


public class RandomNumber : IRandomNumber
{
    private static readonly Random Global = new Random();
    [ThreadStatic] private static Random _local;

    public int Next(int max)
    {
        var localBuffer = _local;
        if (localBuffer == null) 
        {
            int seed;
            lock(Global) seed = Global.Next();
            localBuffer = new Random(seed);
            _local = localBuffer;
        }
        return localBuffer.Next(max);
    }
}

Measure the two implementations and you should see a significant difference.

link|improve this answer
1  
Locks are very cheap when they aren't contested... and even if contested I would expect the "now do something with the number" code to dwarf the cost of the lock in most interesting scenarios. – Marc Gravell Sep 18 '09 at 15:57
Agreed, this solves the locking problem, but isn't this still a highly complicated solution to a trivial problem: that you need to write ''two'' lines of code to generate a random number instead of one. Is this really worth it to save reading one simple line of code? – EMP Apr 15 '10 at 23:07
significant performance! – Bamboo Feb 16 at 10:47
feedback

I would rather use the following class to generate random numbers:



byte[] random;
System.Security.Cryptography.RNGCryptoServiceProvider prov = new   System.Security.Cryptography.RNGCryptoServiceProvider();
prov.GetBytes(random);
link|improve this answer
11  
I'm not one of the down-voters, but note that standard PNRG do serve a genuine need - i.e. to be able to repeatably reproduce a sequence from a known seed. Sometimes the sheer cost of a true cryptographic RNG is too much. And sometimes a crypto RNG is necessary. Horses for courses, so to speak. – Marc Gravell Apr 20 '09 at 12:35
feedback

1) As Marc Gravell said, try to use ONE random-generator. It's always cool to add this to the constructor: System.Environment.TickCount.

2) One tip. Let's say you want to create 100 objects and suppose each of them should have its-own random-generator (handy if you calculate LOADS of random numbers in a very short period of time). If you would do this in a loop (generation of 100 objects), you could do this like that (to assure fully-randomness):

int inMyRandSeed;

for(int i=0;i<100;i++)
{
   inMyRandSeed = System.Environment.TickCount + i;
   .
   .
   .
   myNewObject = new MyNewObject(inMyRandSeed);  
   .
   .
   .
}

// Usage: Random m_rndGen = new Random(inMyRandSeed);

Cheers.

link|improve this answer
1  
I would move System.Environment.TickCount out of the loop. If it ticks over while you are iterating then you will have two items initialized to the same seed. Another option would be to combine the tickcount an i differently (e.g. System.Environment.TickCount<<8 + i) – Dolphin Jun 25 '09 at 19:03
If I understand correctly: do you mean, it could happen, that "System.Environment.TickCount + i" could result the SAME value? – sabiland Jun 26 '09 at 13:18
EDIT: Of course, no need to have TickCount inside the loop. My bad :). – sabiland Jun 26 '09 at 13:19
feedback

How about just doing System.Threading.Thread.sleep(1) Inside the loop at the end lol you still get different random numbers because the system time changes

link|improve this answer
6  
-1 ever thought about performance? Due you really want to wait a full mintue for 60.000 random values? Also there accepted answer is much better and cleaner. – Oliver May 26 '11 at 10:46
This suppose to be a joke. Don't take it too serious. the "lol" string says it all – Bamboo Feb 16 at 10:20
feedback

Your Answer

 
or
required, but never shown

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