通过快速谷歌搜索和*关于多重继承的文章引用:
Multiple inheritance refers to a feature of some object-oriented programming languages in which a class can inherit behaviors and features from more than one superclass. This contrasts with single inheritance, where a class may inherit from at most one superclass.
我知道PHP不允许多重继承.然而,我无法找到一个明确的答案是它是否允许多个类扩展超类.例:
class a {}
class b extends a {}
class c extends a {}
就我正在尝试做的事情而言,我正在制作一个RPG,并希望一个“通用”字符类包含制作角色模板的所有方法和属性.然后我希望类包含每种角色(战士,法师等)的细节,例如统计修饰符和特殊攻击.
这可能吗?
解决方法:
是的,这是完全可能的.继承的整个目的是多个子节点可以从父节点继承常用功能.