What is a Class Library in Java? -
What is the class library in Java? Is it a collection of classes in a package, or is it a package that has a collection of classes?
I am a little confused ^ _ ^
This is a collection of classes, Usually bundled in one. All classes can be in in the same Java package, but they do not have to be. A jar file can also have resources and meta-data in the class library for which it is required (such as driver information for string translation, other frameworks etc.).
Comments
Post a Comment