answersLogoWhite

0

Why to use 'import' in java?

Updated: 8/11/2023
User Avatar

Wiki User

15y ago

Best Answer

The import statement in Java allows to refer to classes which are declared in other packages to be accessed without referring to the full package name. You do not need any import statement if you are willing to always refer to java.util.List by its full name, and so on for all other classes. But if you want to refer to it as List, you need to import it, so that the compiler knows which List you are referring to.

Classes from the java.lang package are automatically imported, so you do not need to explicitly do this, to refer to String, for example.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

The java import keyword is used to import already existing classes in Java, into our program.

for ex: in our program if we say import java.util.*; it means we are importing all the classes inside the package java.util into our current class and we can use those classes here.

If you try to use any external class without importing it, you will get a compile time error. The import keyword tells the compiler the places where it has to look for external class references.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Using an import statement allows you to use classes from other packages without fully qualifying them. For example, if you wanted to instantiate a new ArrayList object without an import statement, you would need to do this: java.util.ArrayList foo = new java.util.ArrayList(); If you use an import statement like this: import java.util.ArrayList; You can then instantiate an ArrayList object like this: ArrayList foo = new ArrayList(); The import statement can also be used to import an entire package, instead of only one class. For example, the above import statement could be rewritten like this: import java.util.*;

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why to use 'import' in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you import others codes in java?

using servlets, php, and database we can connect import codes into java


List two methods to import java packages?

Java packages can be imported using the import key word in java. There are two ways of importing java programs. 1. you can import the class along with the fully classified class name. Ex: import java.lang.String; 2. you can import all classes in a package using the star symbol. Ex: import java.lang.*;


Why doesn't Java use header files?

A header file in C is used to import the features of parent classes in our class. The same feature is provided by the import statement in Java hence the header files are not used.


What is the use of import in java?

First, it's an error; it should be import java.util.*; That will make all classes in the java.util package availabe for use in your Java class definition. Java is divided up into packages. Each package can hold classes and other packages. java.util is a package.


In java what is the import statement needed to use button components in applets or GUI applications?

I highly recommend you to use javax.swing.JFrame


Import a package second time in Java?

You can import a package as many times as you want in Java. The compiler will just ignore any duplicates.


What was Jython first developed for?

Jython was first developed to replace 'C' with 'Java'. It is a cross-platform operational system, combining both Python and Java. Jython can use and/or import any Java class around.


Explanation of import javautilDate?

The import keyword in Java is used to tell the Java compiler where to find different classes and packages.java.util.Date is the location of the Date class: Date is a member of the util package, which is a member of the java package.


How do you import an entire package of class in java?

import package_name.*;where package_name is your package name.by using this syntax you can import an entire package.


How do you add import packages to a java program in netbeans?

package thisPackage; import otherPackage.*; class myClass { }


Why java does not support include?

The purpose of the include key word is to include the functionality of some class into the class under consideration. The same feature is provided in Java using the import statement. Hence there is no use of the include key word in Java.


Is import statment always include in java code statment?

yes