javanamespaces

Trying to understand what are namespaces in Java


I am working on a java - rest api project. I am confused what a name space is ? is it same as a class or is it related to memory used?


Solution

  • A package is a named collection of classes (and possibly subpackages). Packages serve to group related classes and define a namespace for the classes they contain. The Java platform includes packages with names that begin with java, javax and etc.