vote up 13 vote down star
7

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?

flag

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

4 Answers

vote up 44 vote down check

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);
    }
}
link|flag
+1 for correct. Shoot, you beat me to it. :) – Greg D Apr 20 at 12:13
1  
When I grow up. I want to answer Qs as fast as you. LOL. +1 – José Basilio Apr 20 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. – Rekreativc Apr 20 at 12:18
@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 at 12:19
That's right.@Marc Gravell,you might surpass Jon Skeet :) – John Apr 20 at 12:23
show 7 more comments
vote up 1 vote down

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|flag
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 at 15:57
vote up 1 vote down

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|flag
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 at 19:03
If I understand correctly: do you mean, it could happen, that "System.Environment.TickCount + i" could result the SAME value? – marko.sabotin Jun 26 at 13:18
EDIT: Of course, no need to have TickCount inside the loop. My bad :). – marko.sabotin Jun 26 at 13:19
vote up 0 vote down

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|flag
7  
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 at 12:35

Your Answer

Get an OpenID
or

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