Java random() 方法
Java 教程
· 2019-02-08 16:29:33
random() 方法用于返回一个随机数,随机数范围为 0.0 =< Math.random < 1.0。
语法
static double random()
参数
这是一个默认方法,不接受任何参数。
返回值
该方法返回 double 值。
实例
public class Test{
public static void main(String args[]){
System.out.println( Math.random() );
System.out.println( Math.random() );
}
}
编译以上程序,输出结果为:
0.5444085967267008 0.7960235983184115
点击查看所有 Java 教程 文章: https://codercto.com/courses/l/12.html
ASP.NET AJAX in Action
Alessandro Gallo、David Barkol、Rama Vavilala / Manning Publications / 2007-9-3 / USD 44.99
Ajax has revolutionized the way users interact with web pages today. Gone are frustrating page refreshes, lost scroll positions and intermittent interaction with a web site. Instead, we have a new gen......一起来看看 《ASP.NET AJAX in Action》 这本书的介绍吧!