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

Categories

class InnerService:

    def __init__(self):
        print("inner service_1")
from servcie.inner_service import InnerService


class App:

    def __init__(self):
        print("inner app")
        InnerService()


if __name__ == '__main__':
    App()
class InnerService:

    def __init__(self):
        print("inner service_1")
from service_1.outter_service import OutterService
from Demo.app import App as DemoApp


class Main:

    def __init__(self):
        print("app")
        DemoApp()


if __name__ == '__main__':
    OutterService()
from Demo.app import App


class OutterService:

    def __init__(self):
        print("outter service_1")
        App()
project
  |--Demo
     |---service
          inner_service.py
     |---app.py
  |--service-1
       outter-service.py
  main.py

image.png

image.png

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...