Difference between Trait and an Abstract Class in PHP
我最近在PHP中遇到了一些特性,我正试图理解它们。在我的研究中,我偶然发现了这个堆栈溢出问题:特性与接口。接受的回答提到以下内容:
An interface defines a set of methods that the implementing class must
implement.When a trait is use'd the implementations of the methods come along
too--which doesn't happen in an Interface.
到目前为止还不错,但对我来说,这听起来就像是接口和抽象类之间的区别。所以这给我提出了一个后续问题:
- PHP中的特征类和抽象类有什么区别?
我知道我只能从一个抽象类扩展,另一方面,我可以使用任何数量的特性。但这真的是唯一的区别吗?我仍然不完全理解特性及其用途。
特性允许您在类之间共享代码,而不强制您进入特定的类层次结构。假设您希望所有类都具有方便的实用方法
- 用每个类中的代码冗余分别实现它
- 从公共(抽象)祖先类继承
这两种解决方案都不理想,每个都有不同的权衡。代码冗余显然是不可取的,从一个共同的祖先继承会使类层次结构设计变得不灵活。
特性通过让您在每个类可以单独"导入"的特性中实现
不完全是…为此,我们引用官方文档:
A Trait is similar to a class, but only intended to group
functionality in a fine-grained and consistent way. It is not possible
to instantiate a Trait on its own. It is an addition to traditional
inheritance and enables horizontal composition of behavior; that is,
the application of class members without requiring inheritance.
因此,特性用于组合目的,以使类能够执行某些逻辑/行为。如果您从另一个/抽象类继承,那么通常是出于多态性的目的,并且您会得到一个不同的继承/类层次结构,这可能是需要的,也可能不是需要的。
我认为这一切都取决于环境、架构以及你到底想做什么。