Java语言中的函数编程 - 编程入门网
UnaryFunction getItemPrice =
new UnaryFunction()
{
public Object evaluate (Object obj)
{
return new Double(((SETLItem)obj).getPrice());
}
};
Constant catA = new Constant("A");
Constant catB = new Constant("B");
Constant usd100 = new Constant(new Double(100));
Constant usd200 = new Constant(new Double(200));
BinaryPredicateUnaryPredicate belongsToCatA = new BinaryPredicateUnaryPredicate
(new UnaryCompositeBinaryPredicate(new IsEqual(), getItemCat, catA));
BinaryPredicateUnaryPredicate belongsToCatB = new BinaryPredicateUnaryPredicate
(new UnaryCompositeBinaryPredicate(new IsEqual(), getItemCat, catB));
BinaryPredicateUnaryPredicate moreThanUSD100 = new BinaryPredicateUnaryPredicate
(new UnaryCompositeBinaryPredicate(new IsGreaterThanOrEqual(), getItemPrice, usd100));
BinaryPredicateUnaryPredicate moreThanUSD200 = new BinaryPredicateUnaryPredicate
(new UnaryCompositeBinaryPredicate(new IsGreaterThanOrEqual(), getItemPrice, usd200));
UnaryOr isEligibleForDiscount = new UnaryOr(new UnaryAnd(belongsToCatA, moreThanUSD100),
new UnaryAnd(belongsToCatB, moreThanUSD200));
if (isEligibleForDiscount.test(item1))
System.out.println("Item #1 is eligible for discount!");
else
System.out.println("Item #1 is not eligible for discount!");
if (isEligibleForDiscount.test(item2))
System.out.println("Item #2 is eligible for discount!");
else
System.out.println("Item #2 is not eligible for discount!");
if (isEligibleForDiscount.test(item3))
System.out.println("Item #3 is eligible for discount!");
else
System.out.println("Item #3 is not eligible for discount!");
}
}
Java语言中的函数编程(7)时间:2011-01-31 IBM Abhijit Belapurkar使用 ComparableComparator 清单 5 中可能注意到的第一件事是我利用了名为 isEqual (用于检查所说商品的类别是否等于 “A”或者“B ”) 和 isGreaterThanOrEqual (用于检查所述商品的定价是否大于或者等于指定值,对于 Category “A” 商品是 100,对于 Category “B” 商品是 200) 的内置二元谓词仿函数。 您可能还记得在 清单 2 中,原来必须传递 PriceComparator 对象(封装了比较逻辑)以使用 isGreaterThanOrEqual 仿函数进行价格比较。不过在清单 5 中,不显式传递这个 Comparator 对象。如何做到不需要它? 技巧就是,在没有指定该对象时, isGreaterThanOrEqual 仿函数(对这一点,甚至是 IsEqual 仿函数)使用默认的 ComparableComparator 。这个默认的 Comparator 假定两个要比较的对象实现了 java.lang.Comparable 接口,并对第一个参数(在将它类型转换为 Comparable 后)只是调用 compareTo 方法,传递第二个参数作为这个方法的参数。 通过将比较工作委派给这个对象本身,对于 String 比较(像对 item 目录所做的)和 Double 比较(像对 item 价格所做的),可以原样使用默认的 Comparator 。String 和 Double 都是实现了 Comparable 接口的默认 Java 类型。 将 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |