what is the use of import Statment in java
Answers
Answered by
1
Answer:
An import statement tells Java which class you mean when you use a short name (like List ). It tells Java where to find the definition of that class. You can import just the classes you need from a package
Explanation:
Similar questions