Open In App
Related Articles

DoubleAccumulator floatValue() method in Java with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

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 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 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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 29 Jan, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials