Home > Java > Javagetting Started > What is java package

What is java package

(*-*)浩
Release: 2019-11-14 10:16:33
Original
2924 people have browsed it

What is java package

The java package is a container of classes and is used to separate class name spaces.

The role of packages

1. Organize classes or interfaces with similar or related functions into the same package to facilitate the search and use of classes. (Recommended learning: java course)

2. Like folders, packages also use a tree directory storage method. The names of classes in the same package are different, and the names of classes in different packages can be the same. When classes with the same class name in two different packages are called at the same time, the package name should be added to distinguish them. Therefore, packages can avoid name conflicts.

3. Packages also limit access permissions. Only classes with package access permissions can access classes in a certain package.

Java uses the package mechanism to prevent naming conflicts, access control, provide search and location of classes, interfaces, enumerations and annotations, etc.

The syntax format of the package statement is:

package pkg1[.pkg2[.pkg3…]];
Copy after login

A package (package) can be defined as a set of related types (classes, interfaces, enumerations and annotations), providing access protection and namespace management capabilities for these types.

Creating a package

When creating a package, you need to give the package an appropriate name. Later, if another source file contains classes, interfaces, enumerations or annotation types provided by this package, the declaration of this package must be placed at the beginning of the source file.

The package declaration should be on the first line of the source file. There can be only one package declaration per source file, and every type in this file applies to it.

If a package declaration is not used in a source file, the classes, functions, enumerations, annotations, etc. will be placed in an unnamed package.

Example

Let's look at an example that creates a package called animals. Usually use lowercase letters to avoid conflicts with class and interface names.

Add an interface to the animals package:

/* 文件名: Animal.java */
package animals;
 
interface Animal {
   public void eat();
   public void travel();
}
Copy after login

The above is the detailed content of What is java package. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template