+ 1
What is Import
3 Respuestas
+ 4
When you want to use classes from a Java library like JFrame or Scanner you need to tell Java where they are. Import tells Java I want to add the library at the following reference. E.G.
Import Java.util.Scanner;
tells Java I intend to use the Scanner class from the Java.util package. Please import this class into my program.
+ 1
ThAnK yOu JoSh MiZzi
+ 1
That's fine.