Saturday 23 March 2019

“cannot find symbol - class Scanner” error

As the OP is a new beginner to programming, I would like to explain more.
You will need this line on the top of your code in order to compile:
import java.util.Scanner;
This kind of import statement is very important. They tell the compile of which kind of Scanner you are about to use, because the Scanner here is undefined by anyone.
After a import statement, you can use the class Scanner directly and the compiler will know about it.
Also, you can do this without using the import statement, although I don't recommend:
java.util.Scanner scanner = new java.util.Scanner(System.in);
In this case, you just directly tell the compiler about which Scanner you mean to use.

No comments:

Post a Comment

Error While embed the video in Your website page

Error:- Refused to display '<URL>' in a frame because it set 'X-Frame-Options' to 'sameorigin Solution:- if ...