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: The method does not accepts any parameter.
Return Value: The method returns the current value as an int after a narrowing primitive conversion.
Below programs illustrate the above method:
Program 1:
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);
num.accumulate( 42 );
num.accumulate( 10 );
System.out.println( "Old value is: "
+ num);
System.out.println( "Current int value is: "
+ num.intValue());
}
}
|
Output:
Old value is: 52.0
Current int value is: 52
Program 2:
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);
num.accumulate( 63 );
num.accumulate( 1 );
System.out.println( "Old value is: "
+ num);
System.out.println( "Current int value is: "
+ num.intValue());
}
}
|
Output:
Old value is: 64.0
Current int value is: 64
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!