Python类的参数接受实例吗?,python类参数实例,a = Aclass()


a = Aclass()class Bclass(object):    def __init__(self, a):        passb = Bclass(a)

这样可以吗

可以的,并没有规定参数不能用一个实例,只要你保证在Bclass中的方法不会发生TypeError

编橙之家文章,

评论关闭