Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
602 views
in Technique[技术] by (71.8m points)

class - Python mutually dependent classes (circular dependencies)

I've searched a lot, but what I find is mainly examples of recursive programming in python. So here goes the question:

How can I achieve this?

class A:
    b = B()

class B:
    a = A()
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Everything is dynamic in Python - even the class declarations. There's nothing to stop you modifying the contents of a class after the initial declaration:

class A:
    pass

class B:
    a = A()

A.b = B()

NB: If you're not that familiar with Python, the pass keyword simply allows you to say 'nothing here' - it's not important unless class A is as empty as it is in this example!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...