Perl srand 函数
描述
此函数将随机数生成器的种子值设置为 EXPR,如果省略 EXPR,则设置为基于时间、进程 ID 和其他值的随机值
语法
以下是此函数的简单语法 −
srand EXPR srand
返回值
此函数不返回任何值。
示例
以下是显示其基本用法的示例代码 −
#!/usr/bin/perl -w 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.