answersLogoWhite

0

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.

User Avatar

Wiki User

17y ago

What else can I help you with?

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.


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.


Why to use 'import' in java?

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.


Is import statment always include in java code statment?

yes