Wednesday, July 3, 2024
HomeLanguagesJavaRandom nextDouble() method in Java with Examples

Random nextDouble() method in Java with Examples

The nextDouble() method of Random class returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator’s sequence.

Syntax:

public double nextDouble()  

Parameters: The function does not accepts any parameter.

Return Value: This method returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator’s sequence.

Exception: The function does not throws any exception.

Program below demonstrates the above mentioned function:

Program 1:




// program to demonstrate the
// function java.util.Random.nextDouble()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
  
        // create random object
        Random r = new Random();
  
        // check next double value  and print it
        System.out.println("Next double value is = "
                           + r.nextDouble());
    }
}


Output:

Next double value is = 0.10210556893379474

Program 2:




// program to demonstrate the
// function java.util.Random.nextDouble()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
  
        // create random object
        Random r = new Random();
  
        // check next double value  and print it
        System.out.println("Next double value is = "
                           + r.nextDouble());
    }
}


Output:

Next double value is = 0.26964189606000966

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments