/** Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.util.function;import java.util.Objects;import java.util.Comparator;/*** Represents an operation upon two operands of the same type, producing a result* of the same type as the operands. This is a specialization of* {@link BiFunction} for the case where the operands and the result are all of* the same type.** <p>This is a <a href="package-summary.html">functional interface</a>* whose functional method is {@link #apply(Object, Object)}.** @param <T> the type of the operands and result of the operator** @see BiFunction* @see UnaryOperator* @since 1.8*/@FunctionalInterfacepublic interface BinaryOperator<T> extends BiFunction<T,T,T> {/*** Returns a {@link BinaryOperator} which returns the lesser of two elements* according to the specified {@code Comparator}.** @param <T> the type of the input arguments of the comparator* @param comparator a {@code Comparator} for comparing the two values* @return a {@code BinaryOperator} which returns the lesser of its operands,* according to the supplied {@code Comparator}* @throws NullPointerException if the argument is null*/public static <T> BinaryOperator<T> minBy(Comparator<? super T> comparator) {Objects.requireNonNull(comparator);return (a, b) -> comparator.compare(a, b) <= 0 ? a : b;}/*** Returns a {@link BinaryOperator} which returns the greater of two elements* according to the specified {@code Comparator}.** @param <T> the type of the input arguments of the comparator* @param comparator a {@code Comparator} for comparing the two values* @return a {@code BinaryOperator} which returns the greater of its operands,* according to the supplied {@code Comparator}* @throws NullPointerException if the argument is null*/public static <T> BinaryOperator<T> maxBy(Comparator<? super T> comparator) {Objects.requireNonNull(comparator);return (a, b) -> comparator.compare(a, b) >= 0 ? a : b;}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。