0% found this document useful (0 votes)
15 views

33.static Import in Java

Uploaded by

shoth456
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

33.static Import in Java

Uploaded by

shoth456
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

33. Static import By Mr.

Vishnu

Static import in java


Static import:

Static import is a feature which provides the facility to access static members of a class
directly without using class name.
Example:

Display.java

packagecom.sst;

//This class is used to display entered text.


public class Display {
public static void displayText(String text){
System.out.println(text);
}

Test

packagecom.sst.exceptions;

import static display.Display.*;

//This class is used to show static import example.


public class Test {
public static void main(String args[]){
displayText("Hello java.");
}

Output:

Hello Java

Advantages of static import:

1
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.
33. Static import By Mr. Vishnu

It reduces the code by removing the need of class name to access static data members.

Disadvantages of static import:

1. It reduces the code readability because of class name absence.


2. If two classes have static data member with same name and both classes are
statically imported. Then java will throw compile time error.

Difference between import and static import.

import static import

1. Access static members without


1. Access classes and interfaces without
class and interface name.
package name.
2. Accessibility is for static data
2. Accessibility is for classes and
members.
interfaces.
3. Static import can result in an
3. import not result in a unreadable code.
unreadable code.
4. No code conflict.
4. Code conflict can occur.

2
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.

You might also like