I'm using a method to create two new int arrays with random numbers, but the two array contains exactly the same numbers. Why is this happening?

    static void Main(string[] args)
    {
        int[] Foo1= Foo(1000);
        int[] Foo2= Foo(1000);
    }
    static int[] Foo(int length)
    {
        int[] Array = new int[length];
        Random r = new Random();
        for (int i = 0; i < length; i++)
        {          
            Array[i]=r.Next(1, 101);   
        }
        //Thread.Sleep(6);
        return Array;
    }
link|improve this question

6  
Good grief, there's a [weird-behaviour] tag? – BoltClock Feb 11 '11 at 13:31
With 2 followers... @BoltClock is having all the fun itseems...;) – Sachin Shanbhag Feb 11 '11 at 13:31
1  
@BoltClock Not for long. – C. Ross Feb 11 '11 at 13:32
@George Stocker: That isn't a good edit; the title no longer reflects the OP's original problem - it is half-way to answering the OP's question. – Ani Feb 11 '11 at 13:48
1  
@George: Can we please delete this noise? – Ani Feb 11 '11 at 14:02
show 4 more comments
feedback

6 Answers

up vote 5 down vote accepted

You're not seeding Random but you're likely using it close enough between calls that the default seed is the same in both cases :

The default seed value is derived from the system clock and has finite resolution. As a result, different Random objects that are created in close succession by a call to the default constructor will have identical default seed values and, therefore, will produce identical sets of random numbers. This problem can be avoided by using a single Random object to generate all random numbers. You can also work around it by modifying the seed value returned by the system clock and then explicitly providing this new seed value to the Random(Int32) constructor. For more information, see the Random(Int32) constructor.

link|improve this answer
feedback

The other answers around "you're using two instances of Random with the same seed" are correct. However, they used to use a static variable to refer to an instance of Random. That could cause problems if you try to use it from multiple threads, because Random isn't thread-safe.

There are various workarounds for this (such as creating one instance of Random per thread, with a static method to access it safely) - I've written quite a long article on this topic which you may find useful.

link|improve this answer
feedback

it's because your random is initialized twice, with a too small time difference to have a different seed.

try this :

static void Main(string[] args)
{
    Random r = new Random();
    int[] Foo1= Foo(1000,r);
    int[] Foo2= Foo(1000,r);
}
static int[] Foo(int length, Random r)
{
    int[] Array = new int[length];

    for (int i = 0; i < length; i++)
    {          
        Array[i]=r.Next(1, 101);   
    }
    //Thread.Sleep(6);
    return Array;
}
link|improve this answer
2  
I would advise against using a static variable like this... because Random isn't thread-safe, whereas static members typically should be. Instead, create an instance of Random in Main and pass it into the Foo method. – Jon Skeet Feb 11 '11 at 13:40
@Jon, I updated my code to follow your advice. thx – Steve B Feb 11 '11 at 13:49
Cool. That's a lot nicer IMO. It also demonstrates the method's dependencies more elegantly :) – Jon Skeet Feb 11 '11 at 13:55
feedback

you can use global Random object or you can use a good seed like

  new Random(Guid.NewGuid().GetHashCode());
link|improve this answer
Using a new Guid's HashCode as the seed is a neat trick! – Allon Guralnek Feb 11 '11 at 14:14
Thanks, I'm using this! – Dominik aka galaris Feb 11 '11 at 14:23
feedback

That is because of the Random class which are not really random numbers, but rather pseudo randoms. So each time a new Random instance is initialized in a short timespan, it begins with the same number again. If the timespan is bigger, you will have a different seed, so it would work. I would suggest to declare the Random instance in Main and hand it over to the Foo method, so it would look like this:

static void Main(string[] args)
{
    Random r = new Random();
    int[] Foo1= Foo(1000, r);
    int[] Foo2= Foo(1000, r);
}
static int[] Foo(int length, Random r)
{
    int[] Array = new int[length];
    for (int i = 0; i < length; i++)
    {          
        Array[i]=r.Next(1, 101);   
    }
    //Thread.Sleep(6);
    return Array;
}

Edit: I modified the code above after Jon Skeet's advice. Now the problem mentioned by him should be gone.

link|improve this answer
See my comment to Steve B - using a static variable for Random isn't generally a good idea. – Jon Skeet Feb 11 '11 at 13:40
thx, u are right, i changed that above. – Sören Feb 11 '11 at 13:43
feedback

Because you are using almost the same seed. Try moving Random r = new Random(); outside of that method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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