谁能帮我一下混合继承?我看过很多教程,也在谷歌上研究过,但我仍然很难接受它,它只是多个和多层继承的混合,而不是分层继承。
根据Codearchery(视频在这里):
混合继承是任意两种或两种以上的混合。
hybrid的语法:
Inheritance type + Inheritance type (or more inheritance type) = hybrid inheritance
例子:
hierarchical inheritance + multilevel inheritance = hybrid inheritance
或
根据维基百科:
混合继承是上述两种或两种以上继承类型的混合。一个例子是类A有一个子类B,这个子类B有两个子类C和d。这是多级继承和层次继承的混合。
两个来源都得出结论:它是任意两种继承类型的混合。