Java Scanner nextDouble()

📘 Premium Read: Access my best content on Medium member-only articles — deep dives into Java, Spring Boot, Microservices, backend architecture, interview preparation, career advice, and industry-standard best practices.

✅ Some premium posts are free to read — no account needed. Follow me on Medium to stay updated and support my writing.

🎓 Top 10 Udemy Courses (Huge Discount): Explore My Udemy Courses — Learn through real-time, project-based development.

▶️ Subscribe to My YouTube Channel (172K+ subscribers): Java Guides on YouTube

In this guide, you will learn about the Scanner nextDouble() method in Java programming and how to use it with an example.

1. Scanner nextDouble() Method Overview

Definition:

The nextDouble() method of the Scanner class in Java is used to obtain the input as a double. This method parses the next token of the input as a double value.

Syntax:

public double nextDouble()

Parameters:

This method does not take any parameters.

Key Points:

- The method throws InputMismatchException if the next token cannot be translated into a valid double value.

- If the translation is successful, the scanner advances past the input that matched.

- One needs to be cautious when mixing nextDouble() with other next...() methods, especially nextLine(), as they may not consume the entire line, potentially leaving a newline character in the buffer.

2. Scanner nextDouble() Method Example

import java.util.Scanner;

public class ScannerExample {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        System.out.println("Enter a double value:");
        double value = scanner.nextDouble();

        System.out.println("Double the entered value is: " + (value * 2));
    }
}

Output:

Enter a double value:
12.5
Double the entered value is: 25.0

Explanation:

In the provided example, we have instantiated an object of the Scanner class. 

We then use the nextDouble() method to read a double value from the user. 

The program then prints out the double of the entered value. As can be seen, this method reads and processes the input as a double until it encounters a non-double value or a newline.

Comments

Spring Boot 3 Paid Course Published for Free
on my Java Guides YouTube Channel

Subscribe to my YouTube Channel (165K+ subscribers):
Java Guides Channel

Top 10 My Udemy Courses with Huge Discount:
Udemy Courses - Ramesh Fadatare