DoubleToLongFunction Interface is a part of the java.util.function package which is introduced in Java 8. It is an in-built Functional Interface. This function accepts a double-valued argument and produces a long-valued result. As it is a functional interface, it can be used assignment target for lambda expression or method reference. In this post, we are going to see several implementations of DoubleToLongFunction Interface by using different examples.

DoubleToLongFunction_Interface_Java8_Techndeck

DoubleToLongFunction Interface in Java 8 with Examples...!!! Click To Tweet

Look at DoubleToLongFunction Javadoc description below:

DoubleToLongFunctionInterface_Signature_Java8_Techndeck

DoubleToLongFunction Interface contains following method:

applyAsLong

This method performs operation on the given double-valued argument and return an long-valued result.

Lets understand above mentioned method thorough below example:

Example: ‘applyAsLong’ method

Output:
Java 8 DoubleToLongFunction Interface is an absolute useful addition as part of ‘Functional Interfaces’ and can serve variety of purposes. It is quite powerful as it can be used as a higher order functions through lambda functions and above examples could help you to get better idea on how to implement it.

DoubleToLongFunction Interface in Java 8 with Examples...!!! Click To Tweet

Do you like this Post? – then check my other helpful posts:

Other Useful References: