cn.hutool.core.lang.Assert.checkIndex()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(226)

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

Assert.checkIndex介绍

[英]检查下标(数组、集合、字符串)是否符合要求,下标必须满足:

0

[中]检查下标(数组、集合、字符串)是否符合要求,下标必须满足:

0

代码示例

代码示例来源:origin: looly/hutool

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size) throws IllegalArgumentException, IndexOutOfBoundsException {
  return checkIndex(index, size, "[Assertion failed]");
}

代码示例来源:origin: looly/hutool

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size) throws IllegalArgumentException, IndexOutOfBoundsException {
  return checkIndex(index, size, "[Assertion failed]");
}

代码示例来源:origin: cn.hutool/hutool-all

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size) throws IllegalArgumentException, IndexOutOfBoundsException {
  return checkIndex(index, size, "[Assertion failed]");
}

相关文章