Code Fragment-提供可选选项的接口胜于单一接口

前端之家收集整理的这篇文章主要介绍了Code Fragment-提供可选选项的接口胜于单一接口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

JSONObject提供了获取String的一个方法,当查询失败的时候,会抛出异常。

public String getString(String key) {

	verifyIsNull();

	Object o = get(key);

	if (o != null) {
		return o.toString();
	}

	throw new JSONException("JSONObject[" + JSONUtils.quote(key)
			+ "] not found.");

}

但是作为api类,也会有先查询查询不到,再设默认值的情况,相比较于查询失败,抛出异常,提供了更多的可选。

public String optString(String key,String defaultValue) {

	verifyIsNull();

	Object o = opt(key);

	return o != null ? o.toString() : defaultValue;
}
原文链接:https://www.f2er.com/javaschema/286124.html

猜你在找的设计模式相关文章