DoubleAccumulator floatValue() method in Java with Examples Last Updated : 29 Jan, 2019 Comments Improve Suggest changes Like Article Like Report The Java.DoubleAccumulator.floatValue() is an inbuilt method in java that returns the current value as an float after a narrowing primitive conversion. It means the initial datatype is double which is explicitly converted into type float. Syntax: public float floatValue() Parameters: The function does not accepts any parameter. Return value: The method returns the numeric value represented by this object after conversion to type float. Below programs illustrate the above method: Program 1: Java // Java program to demonstrate the // floatValue() method import java.lang.*; import java.util.concurrent.atomic.DoubleAccumulator; public class GFG { public static void main(String args[]) { DoubleAccumulator num = new DoubleAccumulator( Double::sum, 0L); // accumulate operation on num num.accumulate(42); num.accumulate(10); // Print before floatValue operation System.out.println("Old value is: " + num); // Print after floatValue operation System.out.println("Current float value is: " + num.floatValue()); } } Output: Old value is: 52.0 Current float value is: 52.0 Program 2: Java // Java program to demonstrate the // floatValue() method import java.lang.*; import java.util.concurrent.atomic.DoubleAccumulator; public class GFG { public static void main(String args[]) { DoubleAccumulator num = new DoubleAccumulator( Double::sum, 0L); // accumulate operation on num num.accumulate(7); num.accumulate(85); // Print before floatValue operation System.out.println("Old value is: " + num); // Print after floatValue operation System.out.println("Current float value is: " + num.floatValue()); } } Output: Old value is: 92.0 Current float value is: 92.0 Comment More infoAdvertise with us Next Article DoubleAccumulator intValue() method in Java with Examples T Twinkl Bajaj Follow Improve Article Tags : Misc Java Java - util package Java-Functions Java-DoubleAccumulator +1 More Practice Tags : JavaMisc Similar Reads DoubleAdder floatValue() method in Java with Examples The java.DoubleAdder.floatValue() is an inbuilt method in java that returns the sum() as an float after a narrowing primitive conversion. When the object of the class is created its initial value is zero. Syntax: public float floatValue() Parameters: This method does not accepts any parameter. Retur 1 min read DoubleAdder floatValue() method in Java with Examples The java.DoubleAdder.floatValue() is an inbuilt method in java that returns the sum() as an float after a narrowing primitive conversion. When the object of the class is created its initial value is zero. Syntax: public float floatValue() Parameters: This method does not accepts any parameter. Retur 1 min read DoubleAccumulator intValue() method in Java with Examples The Java.DoubleAccumulator.intValue() is an inbuilt method in java that returns the current value as an int after a narrowing primitive conversion. The initial datatype is double which is explicitly converted into type int without accepting any parameters. Syntax: public int intValue() Parameters: T 2 min read DoubleAccumulator intValue() method in Java with Examples The Java.DoubleAccumulator.intValue() is an inbuilt method in java that returns the current value as an int after a narrowing primitive conversion. The initial datatype is double which is explicitly converted into type int without accepting any parameters. Syntax: public int intValue() Parameters: T 2 min read BigDecimal floatValue() Method in Java with Examples The java.math.BigDecimal.floatValue() converts this BigDecimal to a float. If this BigDecimal has too great magnitude to represent as a float, it will be converted to Float.NEGATIVE_INFINITY or Float.POSITIVE_INFINITY as appropriate. Note that even when the return value is finite, this conversion ca 2 min read BigDecimal floatValue() Method in Java with Examples The java.math.BigDecimal.floatValue() converts this BigDecimal to a float. If this BigDecimal has too great magnitude to represent as a float, it will be converted to Float.NEGATIVE_INFINITY or Float.POSITIVE_INFINITY as appropriate. Note that even when the return value is finite, this conversion ca 2 min read Like