Java中的 Validate.isTrue(args.length == 1, "usage: supply url to fetch"); Validate是什么意思?

为什么我在网上没搜到???... 为什么我在网上没搜到??? 展开
 我来答
一只抖猫35
2016-01-23 · TA获得超过200个赞
知道小有建树答主
回答量:336
采纳率:0%
帮助的人:135万
展开全部
第三方jar包commons-lang中的类
定义:
/**
* <p>Validate that the argument condition is {@code true}; otherwise
* throwing an exception with the specified message. This method is useful when
* validating according to an arbitrary boolean expression, such as validating a
* primitive number or using your own custom validation expression.</p>
*
* <pre>
* Validate.isTrue(i >= min && i <= max, "The value must be between %d and %d", min, max);
* Validate.isTrue(myObject.isOk(), "The object is not okay");</pre>
*
* @param expression the boolean expression to check
* @param message the {@link String#format(String, Object...)} exception message if invalid, not null
* @param values the optional values for the formatted exception message, null array not recommended
* @throws IllegalArgumentException if expression is {@code false}
* @see #isTrue(boolean)
* @see #isTrue(boolean, String, long)
* @see #isTrue(boolean, String, double)
*/
public static void isTrue(final boolean expression, final String message, final Object... values) {
if (expression == false) {
throw new IllegalArgumentException(String.format(message, values));
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Silin_Silin
2014-09-23 · TA获得超过470个赞
知道小有建树答主
回答量:303
采纳率:50%
帮助的人:387万
展开全部
就是一个普通的类,可能是类似这样的定义:
public class Validate{
...

public static void isTrue(boolean condition, String message){

if(!condition){

throw new Exception(message);

}
}

...

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式