The java.LongAccumulator.floatValue() is an inbuilt method in java that returns the current value as a float after a widening primitive conversion.
Syntax:
public float floatValue()
Parameters: This method does not accepts any parameter.
Return Value: The method returns the current value as a float after a widening primitive conversion.
Below programs illustrate the above method:
Program 1:
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
num.accumulate( 42 );
num.accumulate( 10 );
System.out.println( " the old value is: " + num);
num.floatValue();
System.out.println( " the current value is: " + num);
}
}
|
Output:
the old value is: 52
the current value is: 52
Program 2:
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
num.accumulate( 4 );
num.accumulate( 15 );
System.out.println( " the old value is: " + num);
num.floatValue();
System.out.println( " the current value is: " + num);
}
}
|
Output:
the old value is: 19
the current value is: 19
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAccumulator.html#floatValue–