【Java学习】- Interface and implementation

Access control is often referred to as implementation hiding. Wrapping data and methods within classes in combination with implemetation hiding is often called encapsulation. The result is a data type with characteristics and behaviors.

Class access:

  1. Thre can be only one public class per compilation unit.
  2. The name of the public class must exactly match the name of the file containing the compilation unit, including capitalization.

When you create a package-access class, it still makes sense to make the fields of the class private, you should always make fields as private as possible. It's generally reasonable to give the methods the same access as the class(package access).

Note that a class cannot be private or protected. So you have only two choices for class access: package access or public. If you don't want anyone else to have access to that class, you can make all the constructors private

In any relationships it's important to have boundaries that are respected by all parties involved.

上一篇:U-Boot 之四 构建过程(Kconfig 配置 + Kbuild 编译)详解


下一篇:本地存储