이 글은 주로 Java 언어의 단항 연산자 인스턴스 분석을 소개합니다.
단항 연산자, 단일 연산자, 단항 연산자, 단항 연산자라고도 하며, 영어명: UnaryOperator.
설명: T 유형의 매개변수를 허용하며 반환 값 유형도 T입니다.
소스 코드:
public interface UnaryOperator<T> extends Function<T, T> { /** * Returns a unary operator that always returns its input argument. * * @param <T> the type of the input and output of the operator * @return a unary operator that always returns its input argument */ static <T> UnaryOperator<T> identity() { return t -> t; } }
테스트 코드:
@Test public void test(){ super.print(UnaryOperator.identity().apply(1));//输出1 super.print(UnaryOperator.identity().apply(false));//输出false super.print(UnaryOperator.identity().apply("string"));//输出string }
요약
위 내용은 Java 언어의 단항 연산자에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!