Question: Add a private static final Scanner field to the class and initialize it with a new Scanner instance connected to the standard Java input stream
Add a private static final Scanner field to the class and initialize it with a new Scanner instance connected to the standard Java input stream System.in. Use this instance to get any keyboard input from the user that your program needs.
I was wondering if I am supposed to initialize it like this:
private static final Scanner scnr = new Scanner(System.in);
or use a constructor to create an instance.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
