commons-lang3-RandomUtils
Posted know-more
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了commons-lang3-RandomUtils相关的知识,希望对你有一定的参考价值。
随机工具类 RandomUtils
nextBoolean() 返回一个随机boolean值
nextBytes(int count) 返回一个指定大小的随机byte数组
nextDouble() 返回一个随机double值
nextDouble(double startInclusive, double endInclusive) 返回一个指定范围的随机double值
nextFloat() 返回一个随机float值
nextFloat(float startInclusive, float endInclusive) 返回一个指定范围的随机float值
nextInt() 返回一个随机int值
nextInt(int startInclusive, int endExclusive) 返回一个指定范围的随机int值
nextLong() 返回一个随机long值
nextLong(long startInclusive, long endExclusive) 返回一个指定范围的随机long值
来源:CSDN
原文:https://blog.csdn.net/u012240455/article/details/79014224
以上是关于commons-lang3-RandomUtils的主要内容,如果未能解决你的问题,请参考以下文章
StringUtils在commons-lang3和commons-lang中的区别