M3: Using Scanner to read int, double and String values

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Scanner scnr;

Declare reference variable named scnr of class Scanner.

2
New cards

scnr = new Scanner(System.in);

Assign the reference to a new instance of Scanner to the scnr variable. Since the Scanner refers to System.in, calling methods using the reference will obtain data from the user (standard input).

3
New cards

scnr.nextInt()

Read the next token and return as an int value. Skip any leading whitespace and stop at whitespace following token. Will throw an InputMismatchException if the token is not an integer.

4
New cards

whitespace

space, tab and newline characters

5
New cards

scnr.next()

Read the next token (non-whitespace characters) and return the reference to a string containing those characters. Skip any leading whitespace and stop at whitespace following token.

6
New cards

scnr.nextDouble()

Read the next token and return as a double value. Skip any leading whitespace and stop at whitespace following token. Will throw an InputMismatchException if the token is not a floating point number.

7
New cards

scnr.nextLine()

Read all characters (including whitespace) up to and including the next newline (\n) character. Return a reference to a string containing all the characters except for the newline.

8
New cards

name = scnr.next();

A statement to read in the next token as a String and save the reference into the name variable.

9
New cards

token

a sequence of non-whitespace characters

10
New cards

InputMismatchException

In Scanner methods, if the token read doesn't match the expected data type then this exception is thrown.

11
New cards

NoSuchElementException

In Scanner methods, if there is not any more input then this exception is thrown.

12
New cards

IllegalStateException

In Scanner methods, if the scanner has already been closed then this exception is thrown.

13
New cards

scnr.close();

Closes the instance of the Scanner, typically called when the programmer is done reading from it.

14
New cards

String line = scnr.nextLine();

A statement to declare the variable line to be datatype String. The nextLine() method call returns a reference to a String that is saved in line. This string will contain all the characters up to but not including the next newline character. The newline character is read but not returned.

15
New cards

double price;
price = scnr.nextDouble();

Declares a variable. Reads and returns the next token as a double saving value in the variable.

16
New cards

char choice;
choice = scnr.next().charAt(0);

Declares a variable. Reads the next token and returns the first character of the token and saves the character in the variable.