Example
Include the Scanner class from the Java API using the import statement.
import java.util.Scanner;
class MyClass {
public static void main(String[] args ) {
Scanner myObj = new Scanner(System.in );
System.out .println("Enter username");
String userName = myObj .nextLine();
System.out .println("Username is: " + userName );
}
}
|
Definition and Usage
The import keyword is employed to bring in a package, class, or interface.