Where and how is import statement used in Java programs?


Wan import statement in Java is used to −

Import user defined classes/Interfaces

Whenever you need to access a class which is not in the current package of the program you need to import that particular class using the import statement.

Example

In the following example we are using the Math class to find the square root of a number therefore, first of all w should import this class using the import statement.

Live Demo

import java.lang.Math.*;

public class Sample{
   public static void main(String args[]){
      System.out.println(Math.sqrt(169));
   }
}

Output

13.0

In case of static imports

static import allows to access the static members of a class without class qualifications. For Example, to access the static methods you need to call the using class name &minsu;

Math.sqrt(169);

But, using static import you can access the static methods directly.

Example

Live Demo

import static java.lang.Math.*;

public class Sample{
   public static void main(String args[]){
      System.out.println(sqrt(169));
   }
}

Output

13.0

Sai Subramanyam
Sai Subramanyam

Passionate, Curious and Enthusiastic.

Updated on: 30-Jul-2019

211 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements