Python:在python中使用父引用创建子对象

时间:2018-09-25 15:10:56

标签: python oop

在Python中,我找不到使用父引用创建子对象的方法。

class Parent:
    .....

class Child(Parent):
    .....

#how to achieve this?
Parent p = Child()

0 个答案:

没有答案