Java随机数的创建
生活随笔
收集整理的這篇文章主要介紹了
Java随机数的创建
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Random
使用Random對象生成隨機數
代碼塊:
import java.util.Random; public class 隨機數 {public static void main(String[] args) {// 生成 Random 對象Random random = new Random();for (int i = 0; i < 10; i++) {// 生成 0-9 隨機整數int number = random.nextInt(10);System.out.println("生成隨機數:" + number);}} }運行結果:
Math
Math.random(); 此方法會產生一個0到1的double值。
代碼塊:
public static void main(String[] args) {for (int i = 0; i < 5; i++) {double number = Math.random();System.out.println("生成隨機數:" + number);}}運行結果:
使用Math.random();方法來生成一個一定范圍的int值
代碼塊;
public static void main(String[] args) {for (int i = 0; i < 5; i++) {int number = (int) (Math.random() * 100);System.out.println("生成隨機數:" + number);}}運行結果:
Math.random(); 默認類型是double型
(數據類型)(最小值+Math.random()*(最大值-最小值+1))
public static void main(String[] args){int a = (int)(1+Math.random()*(10-1+1));System.out.println(a); }總結
以上是生活随笔為你收集整理的Java随机数的创建的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 论Web App、Hybrid App、
- 下一篇: Android性能分析工具Systrac