< Perl Programming < Keywords

The srand keyword

The srand function sets and returns the random number seed for the rand operator so that it can produce a different sequence of random numbers.

srand is called implicitly when rand is called, but can be called explicitly to generate random numbers for test purposes with the same seed (see below).

Please do not call srand by the same more than once without an EXPRESSION after it, as the random number generation will lose randomness.

Syntax

  srand EXPRESSION
  srand

Examples

srand($seed);  # Creates random numbers with the same seed for test

See also

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.