【Java学习】- Interface and implementation

2022/2/17 11:42:14

本文主要是介绍【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.



这篇关于【Java学习】- Interface and implementation的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程