产生随机数比较方便的方法(以java为例子)
Posted joker4o
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了产生随机数比较方便的方法(以java为例子)相关的知识,希望对你有一定的参考价值。
利用时间函数就好了,获得当前日期,然后截取秒,或者天这几个字符,然后转成数值类型就好了,相对于使用random,那样产生的是不变的随机数来说,这种利用时间来产生靠谱一点。至于需要什么范围就取余%就好了,相对于random,这种方法见仁见智吧
//获取当前时间用做随机数
String time = util.getNowStringTime();
//截取秒,最后两个字符
String tempIndex = time.substring(time.length()-2,time.length());
int index = Integer.parseInt(tempIndex) % tempList.size();
System.out.println("随机数" +index + "字符"+ tempIndex);
public String getNowStringTime ()
//获取当前日期
Date date = new Date();
String dateStr = "";
DateFormat sdf = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
try
dateStr = sdf.format(date);
System.out.println(dateStr);
catch (Exception e)
e.printStackTrace();
return dateStr;
以上是关于产生随机数比较方便的方法(以java为例子)的主要内容,如果未能解决你的问题,请参考以下文章