System.Random.NextDouble 方法

方法描述

返回一个介于 0.0 和 1.0 之间的随机数。

语法定义(C# System.Random.NextDouble 方法 的用法)

public virtual double NextDouble()

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
返回值 System.Double 大于等于 0.0 并且小于 1.0 的双精度浮点数。

提示和注释

此方法是受保护的方法 Sample 的公共版本。

System.Random.NextDouble 方法例子

下面的示例调用 NextDouble 方法以生成 100 个随机数,并显示它们的频率分布。

using System;

public class Example
{
   public static void Main()
   {
      int[] frequency = new int[10];
      double number;
      Random rnd = new Random();

      for (int ctr = 0; ctr <= 99; ctr++) {
         number = rnd.NextDouble();
         frequency[(int) Math.Floor(number*10)] ++;
      }
      Console.WriteLine("Distribution of Random Numbers:");
      for (int ctr = frequency.GetLowerBound(0); ctr <= frequency.GetUpperBound(0); ctr++)
         Console.WriteLine("0.{0}0-0.{0}9       {1}", ctr, frequency[ctr]);
   }
}
// The following example displays output similar to the following:
//       Distribution of Random Numbers:
//       0.00-0.09       16
//       0.10-0.19       8
//       0.20-0.29       8
//       0.30-0.39       11
//       0.40-0.49       9
//       0.50-0.59       6
//       0.60-0.69       13
//       0.70-0.79       6
//       0.80-0.89       9
//       0.90-0.99       14

异常

异常 异常描述

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。