vote up 1 vote down star

I have previously been told that I should always use Randomize() before I use Rnd() in a vb.net application, yet it always seems to work fine without it. What does adding Randomize() do for me in this case? It doesnt appear to affect my application in the least.

Thanks for the help!

flag
5  
Who made this community wiki and why? I am confused.... – Cyclone Sep 4 at 19:08
Cyclone, is it possible you checked the Wiki box accidentally? – Henk Holterman Sep 5 at 10:46
Cyclone, apparently you did check the Wiki checkbox. It's not really possible to undo that, and it isn't a big deal. For details, see meta.stackoverflow.com/questions/20446/… – Henk Holterman Sep 5 at 13:55
Okay...I am sure I did not, but thanks for letting me know. – Cyclone Sep 5 at 15:10

3 Answers

vote up 3 vote down check

In VB, Rnd() uses a mathematical operation to produce the next "random" number. Because the actual operation is known, given a specific value, you can predict the next value. However, given an arbitray start value the numbers have good distribution - these are "pseudo-random" numbers.

To keep Rnd() from startng at a predictable number (and hence giving the same sequence of "random" numbers every time), Randomize() should be called to use the machine clock to set the initial value (called a seed).

(In the .net world, I'd use System.Random instead if you can)

link|flag
vote up 3 vote down

Randomize() initialize the first seed of Rnd(), if you won't use it - VB.Net will use the default seed number.

link|flag
vote up 0 vote down

Randomize will set the seed to something time related, like the system uptime or the system date. So the function Rand() will show different values every time the app is executed.
However, I highly recommend you to use the System.Random class instead of VisualBasic Rand(). No need to call any randomize() function

Here are some example code, this will generate six random integers from the lower to upper bounds:

Dim randObj As New Random( seed )
Dim j As Integer
For j = 0 To 5
    Console.Write( "{0,11} ", randObj.Next( lower, upper ) )
Next j
Console.WriteLine( )
link|flag

Your Answer

Get an OpenID
or

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