obj3

  • python 单例模式

    什么是单例模式: 单例模式即一个类有且仅有一个实例 class Mysql: __instance = None def __init__(self, ip, port): sel…

    python 2022年7月31日