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

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

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

Assert.badIndexMsg介绍

[英]错误的下标时显示的消息
[中]错误的下标时显示的消息

代码示例

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

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @param errorMsgTemplate 异常时的消息模板
 * @param params 参数列表
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size, String errorMsgTemplate, Object... params) throws IllegalArgumentException, IndexOutOfBoundsException {
  if (index < 0 || index >= size) {
    throw new IndexOutOfBoundsException(badIndexMsg(index, size, errorMsgTemplate, params));
  }
  return index;
}

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

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @param errorMsgTemplate 异常时的消息模板
 * @param params 参数列表
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size, String errorMsgTemplate, Object... params) throws IllegalArgumentException, IndexOutOfBoundsException {
  if (index < 0 || index >= size) {
    throw new IndexOutOfBoundsException(badIndexMsg(index, size, errorMsgTemplate, params));
  }
  return index;
}

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

/**
 * 检查下标(数组、集合、字符串)是否符合要求,下标必须满足:
 * 
 * <pre>
 * 0 <= index < size
 * </pre>
 * 
 * @param index 下标
 * @param size 长度
 * @param errorMsgTemplate 异常时的消息模板
 * @param params 参数列表
 * @return 检查后的下标
 * @throws IllegalArgumentException 如果size < 0 抛出此异常
 * @throws IndexOutOfBoundsException 如果index < 0或者 index >= size 抛出此异常
 * @since 4.1.9
 */
public static int checkIndex(int index, int size, String errorMsgTemplate, Object... params) throws IllegalArgumentException, IndexOutOfBoundsException {
  if (index < 0 || index >= size) {
    throw new IndexOutOfBoundsException(badIndexMsg(index, size, errorMsgTemplate, params));
  }
  return index;
}

相关文章