/** Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.util.function;/*** Represents an operation that accepts an object-valued and a* {@code long}-valued argument, and returns no result. This is the* {@code (reference, long)} specialization of {@link BiConsumer}.* Unlike most other functional interfaces, {@code ObjLongConsumer} is* expected to operate via side-effects.** <p>This is a <a href="package-summary.html">functional interface</a>* whose functional method is {@link #accept(Object, long)}.** @param <T> the type of the object argument to the operation** @see BiConsumer* @since 1.8*/@FunctionalInterfacepublic interface ObjLongConsumer<T> {/*** Performs this operation on the given arguments.** @param t the first input argument* @param value the second input argument*/void accept(T t, long value);}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。