srand EXPR srand |
設置EXPR或基於時間的一個隨機值的隨機數生成的種子值,進程ID,和其他值(如果EXPR被忽略)。
Nothing
試試下麵的例子:
#!/usr/bin/perl -w #by www.gitbook.net srand(26); print("Here's a random number: ", rand(), ".\n"); srand(26); print("Here's the same random number: ", rand(), ".\n");
這將產生以下結果:
Here's a random number: 0.811688061411591.
Here's the same random number: 0.811688061411591.