Random 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 Random 类的新实例。
重载
| 名称 | 说明 |
|---|---|
| Random() |
使用默认种子值初始化类的新实例 Random 。 |
| Random(Int32) |
使用指定的种子值初始化类的新实例 Random 。 |
Random()
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
使用默认种子值初始化类的新实例 Random 。
public:
Random();
public Random();
Public Sub New ()
示例
以下示例使用无参数构造函数实例化三 Random 个对象,并为每个对象显示五个随机整数序列。 如果它在 .NET Framework 上运行,因为前两个 Random 对象是连续创建的,因此它们使用基于系统时钟的相同种子值实例化,因此,它们生成相同的随机数序列。 另一方面,第三 Random 个对象的无参数构造函数在调用 Thread.Sleep 该方法导致的两秒延迟后调用。 由于这会为第三 Random 个对象生成不同的种子值,因此会生成不同的随机数序列。
using System;
using System.Threading;
public class RandomNumbers
{
public static void Main()
{
Random rand1 = new Random();
Random rand2 = new Random();
Thread.Sleep(2000);
Random rand3 = new Random();
ShowRandomNumbers(rand1);
ShowRandomNumbers(rand2);
ShowRandomNumbers(rand3);
}
private static void ShowRandomNumbers(Random rand)
{
Console.WriteLine();
byte[] values = new byte[5];
rand.NextBytes(values);
foreach (byte value in values)
Console.Write("{0, 5}", value);
Console.WriteLine();
}
}
// The example displays an output similar to the following:
// 28 35 133 224 58
//
// 28 35 133 224 58
//
// 32 222 43 251 49
Imports System.Threading
Module RandomNumbers
Public Sub Main()
Dim rand1 As New Random()
Dim rand2 As New Random()
Thread.Sleep(2000)
Dim rand3 As New Random()
ShowRandomNumbers(rand1)
ShowRandomNumbers(rand2)
ShowRandomNumbers(rand3)
End Sub
Private Sub ShowRandomNumbers(rand As Random)
Console.WriteLine()
Dim values(4) As Byte
rand.NextBytes(values)
For Each value As Byte In values
Console.Write("{0, 5}", value)
Next
Console.WriteLine()
End Sub
End Module
' The example displays an output similar to the following:
' 28 35 133 224 58
'
' 28 35 133 224 58
'
' 32 222 43 251 49
注解
在 .NET Framework 中,默认种子值派生自具有有限分辨率的系统时钟。 因此,调用无参数构造函数时连续创建的不同 Random 对象具有相同的默认种子值,因此生成相同的随机数集。 可以使用单个 Random 对象生成所有随机数来避免此问题。 还可以通过生成自己的随机种子值并将其传递给 Random(Int32) 构造函数来解决此问题。 有关详细信息,请参阅 Random(Int32) 构造函数。
在 .NET Core 中,默认种子值由线程静态伪随机数生成器生成,因此上述限制不适用。 Random在连续连续中创建的不同对象在 .NET Core 中生成不同的随机数集。
如果希望随机数生成器生成随机数字序列,请调用此构造函数。 若要为不同的随机数生成器生成一个固定的随机数序列,请使用固定种子值调用 Random(Int32) 构造函数。 测试 Random 使用随机数的应用时,经常使用此构造函数重载。
实例化随机数生成器后,调用单个 Random 方法(例如 Next() 或 NextDouble())生成随机数。
适用于
Random(Int32)
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
- Source:
- Random.cs
使用指定的种子值初始化类的新实例 Random 。
public:
Random(int Seed);
public Random(int Seed);
new Random : int -> Random
Public Sub New (Seed As Integer)
参数
- Seed
- Int32
用于计算伪随机数序列的起始值的数字。 如果指定负数,则使用数字的绝对值。
示例
以下示例使用类构造函数创建 Random 对象,该构造函数采用种子参数并生成随机整数和双精度序列。 该示例说明使用构造函数和种子参数再次创建对象时 Random ,将生成相同的序列。
// Example of the Random class constructors and Random.NextDouble()
// method.
using System;
using System.Threading;
public class RandomObjectDemo
{
// Generate random numbers from the specified Random object.
static void RunIntNDoubleRandoms(Random randObj)
{
// Generate the first six random integers.
for(int j = 0; j < 6; j++)
Console.Write(" {0,10} ", randObj.Next());
Console.WriteLine();
// Generate the first six random doubles.
for(int j = 0; j < 6; j++)
Console.Write(" {0:F8} ", randObj.NextDouble());
Console.WriteLine();
}
// Create a Random object with the specified seed.
static void FixedSeedRandoms(int seed)
{
Console.WriteLine(
"\nRandom numbers from a Random object with " +
"seed = {0}:", seed);
Random fixRand = new Random(seed);
RunIntNDoubleRandoms(fixRand);
}
// Create a random object with a timer-generated seed.
static void AutoSeedRandoms()
{
// Wait to allow the timer to advance.
Thread.Sleep(1);
Console.WriteLine(
"\nRandom numbers from a Random object " +
"with an auto-generated seed:");
Random autoRand = new Random();
RunIntNDoubleRandoms(autoRand);
}
static void Main()
{
Console.WriteLine(
"This example of the Random class constructors and " +
"Random.NextDouble() \n" +
"generates the following output.\n");
Console.WriteLine(
"Create Random objects, and then generate and " +
"display six integers and \nsix doubles from each.");
FixedSeedRandoms(123);
FixedSeedRandoms(123);
FixedSeedRandoms(456);
FixedSeedRandoms(456);
AutoSeedRandoms();
AutoSeedRandoms();
AutoSeedRandoms();
}
}
/*
This example of the Random class constructors and Random.NextDouble()
generates an output similar to the following:
Create Random objects, and then generate and display six integers and
six doubles from each.
Random numbers from a Random object with seed = 123:
2114319875 1949518561 1596751841 1742987178 1586516133 103755708
0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
Random numbers from a Random object with seed = 123:
2114319875 1949518561 1596751841 1742987178 1586516133 103755708
0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
Random numbers from a Random object with seed = 456:
2044805024 1323311594 1087799997 1907260840 179380355 120870348
0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
Random numbers from a Random object with seed = 456:
2044805024 1323311594 1087799997 1907260840 179380355 120870348
0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
Random numbers from a Random object with an auto-generated seed:
380213349 127379247 1969091178 1983029819 1963098450 1648433124
0.08824121 0.41249688 0.36445811 0.05637512 0.62702451 0.49595560
Random numbers from a Random object with an auto-generated seed:
861793304 2133528783 1947358439 124230908 921262645 1087892791
0.56880819 0.42934091 0.60162512 0.74388610 0.99432979 0.30310005
Random numbers from a Random object with an auto-generated seed:
1343373259 1992194672 1925625700 412915644 2026910487 527352458
0.04937517 0.44618494 0.83879212 0.43139707 0.36163507 0.11024451
*/
// Example of the Random class constructors and Random.NextDouble()
// method.
open System
open System.Threading
// Generate random numbers from the specified Random object.
let runIntNDoubleRandoms (randObj: Random) =
// Generate the first six random integers.
for _ = 1 to 6 do
printf $" {randObj.Next(),10} "
printfn ""
// Generate the first six random doubles.
for _ = 1 to 6 do
printf $" {randObj.NextDouble():F8} "
printfn ""
let fixedSeedRandoms seed =
printfn $"\nRandom numbers from a Random object with seed = %i{seed}:"
let fixRand = Random seed
runIntNDoubleRandoms fixRand
let autoSeedRandoms () =
// Wait to allow the timer to advance.
Thread.Sleep 1
printfn "\nRandom numbers from a Random object with an auto-generated seed: "
let autoRand = Random ()
runIntNDoubleRandoms autoRand
printfn
"""This example of the Random class constructors and Random.NextDouble()
generates the following output.
Create Random objects, and then generate and display six integers and
six doubles from each."""
fixedSeedRandoms 123
fixedSeedRandoms 123
fixedSeedRandoms 456
fixedSeedRandoms 456
autoSeedRandoms ()
autoSeedRandoms ()
autoSeedRandoms ()
(*
This example of the Random class constructors and Random.NextDouble()
generates an output similar to the following:
Create Random objects, and then generate and display six integers and
six doubles from each.
Random numbers from a Random object with seed = 123:
2114319875 1949518561 1596751841 1742987178 1586516133 103755708
0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
Random numbers from a Random object with seed = 123:
2114319875 1949518561 1596751841 1742987178 1586516133 103755708
0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
Random numbers from a Random object with seed = 456:
2044805024 1323311594 1087799997 1907260840 179380355 120870348
0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
Random numbers from a Random object with seed = 456:
2044805024 1323311594 1087799997 1907260840 179380355 120870348
0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
Random numbers from a Random object with an auto-generated seed:
380213349 127379247 1969091178 1983029819 1963098450 1648433124
0.08824121 0.41249688 0.36445811 0.05637512 0.62702451 0.49595560
Random numbers from a Random object with an auto-generated seed:
861793304 2133528783 1947358439 124230908 921262645 1087892791
0.56880819 0.42934091 0.60162512 0.74388610 0.99432979 0.30310005
Random numbers from a Random object with an auto-generated seed:
1343373259 1992194672 1925625700 412915644 2026910487 527352458
0.04937517 0.44618494 0.83879212 0.43139707 0.36163507 0.11024451
*)
' Example of the Random class constructors and Random.NextDouble()
' method.
Imports System.Threading
Module RandomObjectDemo
' Generate random numbers from the specified Random object.
Sub RunIntNDoubleRandoms(randObj As Random)
' Generate the first six random integers.
Dim j As Integer
For j = 0 To 5
Console.Write(" {0,10} ", randObj.Next())
Next j
Console.WriteLine()
' Generate the first six random doubles.
For j = 0 To 5
Console.Write(" {0:F8} ", randObj.NextDouble())
Next j
Console.WriteLine()
End Sub
' Create a Random object with the specified seed.
Sub FixedSeedRandoms(seed As Integer)
Console.WriteLine(vbCrLf & _
"Random numbers from a Random object with " & _
"seed = {0}:", seed)
Dim fixRand As New Random(seed)
RunIntNDoubleRandoms(fixRand)
End Sub
' Create a random object with a timer-generated seed.
Sub AutoSeedRandoms()
' Wait to allow the timer to advance.
Thread.Sleep(1)
Console.WriteLine(vbCrLf & _
"Random numbers from a Random object " & _
"with an auto-generated seed:")
Dim autoRand As New Random()
RunIntNDoubleRandoms(autoRand)
End Sub
Sub Main()
Console.WriteLine(_
"This example of the Random class constructors " & _
"and Random.NextDouble() " & vbCrLf & _
"generates the following output." & vbCrLf)
Console.WriteLine("Create Random " & _
"objects, and then generate and display six " & _
"integers and " & vbCrLf & "six doubles from each.")
FixedSeedRandoms(123)
FixedSeedRandoms(123)
FixedSeedRandoms(456)
FixedSeedRandoms(456)
AutoSeedRandoms()
AutoSeedRandoms()
AutoSeedRandoms()
End Sub
End Module
' This example of the Random class constructors and Random.NextDouble()
' generates an output similar to the following:
'
' Create Random objects, and then generate and display six integers and
' six doubles from each.
'
' Random numbers from a Random object with seed = 123:
' 2114319875 1949518561 1596751841 1742987178 1586516133 103755708
' 0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
'
' Random numbers from a Random object with seed = 123:
' 2114319875 1949518561 1596751841 1742987178 1586516133 103755708
' 0.01700087 0.14935942 0.19470390 0.63008947 0.90976122 0.49519146
'
' Random numbers from a Random object with seed = 456:
' 2044805024 1323311594 1087799997 1907260840 179380355 120870348
' 0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
'
' Random numbers from a Random object with seed = 456:
' 2044805024 1323311594 1087799997 1907260840 179380355 120870348
' 0.21988117 0.21026556 0.39236514 0.42420498 0.24102703 0.47310170
'
' Random numbers from a Random object with an auto-generated seed:
' 1920831619 1346865774 2006582766 1968819760 332463652 110770792
' 0.71326689 0.50383335 0.50446082 0.66312569 0.94517193 0.58059287
'
' Random numbers from a Random object with an auto-generated seed:
' 254927927 1205531663 1984850027 110020849 1438111494 1697714106
' 0.19383387 0.52067738 0.74162783 0.35063667 0.31247720 0.38773733
'
' Random numbers from a Random object with an auto-generated seed:
' 736507882 1064197552 1963117288 398705585 396275689 1137173773
' 0.67440084 0.53752140 0.97879483 0.03814764 0.67978248 0.19488178
注解
为不同的 Random 对象提供相同的种子值会导致每个实例生成相同的随机数序列。 测试依赖于随机数生成器的应用时,通常会执行此操作。
如果应用程序需要不同的随机数序列,请使用不同的种子值重复调用此构造函数。 生成唯一种子值的一种方法是使其依赖于时间。 例如,从系统时钟派生种子值,就像重载一样 Random() 。 但是,系统时钟可能没有足够的分辨率来提供具有不同种子值的此构造函数的不同调用。 在 .NET Framework 上,这会导致生成相同伪随机数序列的随机数生成器,如以下示例中的前两个 Random 对象所示。 为防止这种情况,请应用算法来区分每个调用中的种子值,或调用 Thread.Sleep 该方法以确保为每个构造函数提供不同的种子值。
using System;
using System.Threading;
public class Example
{
public static void Main()
{
Random rand1 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF);
Random rand2 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF);
Thread.Sleep(20);
Random rand3 = new Random((int) DateTime.Now.Ticks & 0x0000FFFF);
ShowRandomNumbers(rand1);
ShowRandomNumbers(rand2);
ShowRandomNumbers(rand3);
}
private static void ShowRandomNumbers(Random rand)
{
Console.WriteLine();
byte[] values = new byte[4];
rand.NextBytes(values);
foreach (var value in values)
Console.Write("{0, 5}", value);
Console.WriteLine();
}
}
// The example displays output similar to the following:
// 145 214 177 134 173
//
// 145 214 177 134 173
//
// 126 185 175 249 157
open System
open System.Threading
let showRandomNumbers (rand: Random) =
printfn ""
let values = Array.zeroCreate 5
rand.NextBytes values
for value in values do
printf "%5i" value
printfn ""
let rand1 = Random(DateTime.Now.Ticks &&& 0x0000FFFFL |> int)
let rand2 = Random(DateTime.Now.Ticks &&& 0x0000FFFFL |> int)
Thread.Sleep 20
let rand3 = Random(DateTime.Now.Ticks &&& 0x0000FFFFL |> int)
showRandomNumbers rand1
showRandomNumbers rand2
showRandomNumbers rand3
// The example displays output similar to the following:
// 145 214 177 134 173
//
// 145 214 177 134 173
//
// 126 185 175 249 157
Imports System.Threading
Module RandomNumbers
Public Sub Main()
Dim rand1 As New Random(CInt(Date.Now.Ticks And &h0000FFFF))
Dim rand2 As New Random(CInt(Date.Now.Ticks And &h0000FFFF))
Thread.Sleep(20)
Dim rand3 As New Random(CInt(Date.Now.Ticks And &h0000FFFF))
ShowRandomNumbers(rand1)
ShowRandomNumbers(rand2)
ShowRandomNumbers(rand3)
End Sub
Private Sub ShowRandomNumbers(rand As Random)
Console.WriteLine()
Dim values(4) As Byte
rand.NextBytes(values)
For Each value As Byte In values
Console.Write("{0, 5}", value)
Next
Console.WriteLine()
End Sub
End Module
' The example displays output similar to the following:
' 145 214 177 134 173
'
' 145 214 177 134 173
'
' 126 185 175 249 157
另一个选项是实例化用于在应用程序中生成所有随机数的单个 Random 对象。 这会产生稍微更好的性能,因为实例化随机数生成器相当昂贵。