org.apache.commons.math3.random.RandomDataGenerator.nextHexString()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中org.apache.commons.math3.random.RandomDataGenerator.nextHexString方法的一些代码示例,展示了RandomDataGenerator.nextHexString的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RandomDataGenerator.nextHexString方法的具体详情如下:
包路径:org.apache.commons.math3.random.RandomDataGenerator
类名称:RandomDataGenerator
方法名:nextHexString

RandomDataGenerator.nextHexString介绍

[英]Algorithm Description: hex strings are generated using a 2-step process.

  1. len / 2 + 1 binary bytes are generated using the underlying Random
  2. Each binary byte is translated into 2 hex digits
    [中]算法描述:十六进制字符串使用两步过程生成。
    1.len/2+1二进制字节是使用底层随机变量生成的
    1.每个二进制字节被翻译成2个十六进制数字

代码示例

代码示例来源:origin: org.apache.commons/commons-math3

/**
 * {@inheritDoc}
 * <p>
 * <strong>Algorithm Description:</strong> hex strings are generated using a
 * 2-step process.
 * <ol>
 * <li>{@code len / 2 + 1} binary bytes are generated using the underlying
 * Random</li>
 * <li>Each binary byte is translated into 2 hex digits</li>
 * </ol>
 * </p>
 *
 * @param len the desired string length.
 * @return the random string.
 * @throws NotStrictlyPositiveException if {@code len <= 0}.
 */
public String nextHexString(int len) throws NotStrictlyPositiveException {
  return delegate.nextHexString(len);
}

代码示例来源:origin: geogebra/geogebra

/**
 * {@inheritDoc}
 * <p>
 * <strong>Algorithm Description:</strong> hex strings are generated using a
 * 2-step process.
 * <ol>
 * <li>{@code len / 2 + 1} binary bytes are generated using the underlying
 * Random</li>
 * <li>Each binary byte is translated into 2 hex digits</li>
 * </ol>
 * </p>
 *
 * @param len the desired string length.
 * @return the random string.
 * @throws NotStrictlyPositiveException if {@code len <= 0}.
 */
public String nextHexString(int len) throws NotStrictlyPositiveException {
  return delegate.nextHexString(len);
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/**
 * {@inheritDoc}
 * <p>
 * <strong>Algorithm Description:</strong> hex strings are generated using a
 * 2-step process.
 * <ol>
 * <li>{@code len / 2 + 1} binary bytes are generated using the underlying
 * Random</li>
 * <li>Each binary byte is translated into 2 hex digits</li>
 * </ol>
 * </p>
 *
 * @param len the desired string length.
 * @return the random string.
 * @throws NotStrictlyPositiveException if {@code len <= 0}.
 */
public String nextHexString(int len) throws NotStrictlyPositiveException {
  return delegate.nextHexString(len);
}

相关文章

微信公众号

最新文章

更多