Random獲取隨機數

我叫阿狸貓發表於2014-04-18

獲取0-3的int型別的隨機數

Random random = new Random();
System.out.println(random.nextInt(4));//注意:這裡是3+1


相關文章