Java package

This is an old revision of this page, as edited by Mike Rosoft (talk | contribs) at 09:11, 30 December 2005 (Removed nonsense and marked for cleanup). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

You must add a |reason= parameter to this Cleanup template – replace it with {{Cleanup|reason=<Fill reason here>}}, or remove the Cleanup template.
Packages are collections of classes and interfaces in Java. Each package is a simply a folder created by programmer. Ther are basically two types of packages in Java:

  1. User Defined packages
  2. API Packages or Inbuild packages

User defined packages are the packages where programmer can crate it it base / super classes. By importing these packages programmer can develop new classes by inheriting attributes and behaviours of these classes.