+ 1
What are package in java?
I don't understand about the thing?
2 Answers
+ 6
Packages are used in Java in order to prevent naming conflicts, to control access, to make searching/locating and usage of classes, interfaces, enumerations and annotations easier, etc.
https://www.tutorialspoint.com/java/java_packages.htm
+ 3
A collection of classes, I hope.