Java random() 方法

random() 方法用于返回一个随机数,随机数范围为 0.0 =< Math.random < 1.0。

语法

  1. static double random()

参数

  • 这是一个默认方法,不接受任何参数。

返回值

该方法返回 double 值。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. System.out.println( Math.random() );
  4. System.out.println( Math.random() );
  5. }
  6. }

编译以上程序,输出结果为:

  1. 0.5444085967267008
  2. 0.7960235983184115