python 단일 모드를 실현하는 5가지 방법
#
ip = '192.168.13.98'
port = '3306'
class MySQL:
__instance = None
def __init__(self, ip, port):
self.ip = ip
self.port = port
@classmethod
def instance(cls, *args, **kwargs):
if args or kwargs:
cls.__instance = cls(*args, **kwargs)
return cls.__instance
obj1 = MySQL.instance(ip, port)
obj2 = MySQL.instance()
obj3 = MySQL.instance()
print(obj1)
print(obj2, obj2.__dict__)
print(obj3, obj3.__dict__)
결과 내보내기2. 종류의 장식기
def singlegon(cls):
_instance = cls(ip, port)
def wrapper(*args, **kwargs):
if args or kwargs:
return cls(*args, **kwargs)
return _instance
return wrapper
@singlegon
class MySQL1:
def __init__(self, ip, port):
self.ip = ip
self.port = port
obj1 = MySQL1()
obj2 = MySQL1()
obj3 = MySQL1('1.1.1.3', 8080)
print(obj1)
print(obj2, obj2.__dict__)
print(obj3, obj3.__dict__)
실행 결과삼, 원류
class Mymetaclass(type):
def __init__(self, class_name, class_bases, class_dic):
super().__init__(class_name, class_bases, class_dic)
self.__instance = self(ip, port)
def __call__(self, *args, **kwargs):
if args or kwargs:
obj = self.__new__(self)
self.__init__(obj, *args, **kwargs)
self.__instance = obj
return self.__instance
class MySQL2(metaclass=Mymetaclass):
def __init__(self, ip, port):
self.ip = ip
self.port = port
obj1 = MySQL2()
obj2 = MySQL2()
obj3 = MySQL2('1.1.1.3', 80)
print(obj1)
print(obj2, obj2.__dict__)
print(obj3, obj3.__dict__)
실행 결과4. 모듈 가져오기
# instance.py
class MySQL:
def __init__(self, ip, port):
self.ip = ip
self.port = port
ip = '192.168.13.98'
port = 3306
instance = MySQL(ip, port)
#
import os, sys
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
from test import instance
obj1 = instance.instance
obj2 = instance.instance
obj3 = instance.MySQL('1.1.1.3', 80)
print(obj1)
print(obj2, obj2.__dict__)
print(obj3, obj3.__dict__)
실행 결과5, 다시 쓰기__new__()
class MySQL3(object):
__instance = None
__first_init = True
def __init__(self, ip, port):
if self.__first_init:
self.ip = ip
self.port = port
self.__first_init = False
def __new__(cls, *args, **kwargs):
if not cls.__instance:
cls.__instance = object.__new__(cls)
return cls.__instance
obj1 = MySQL3(ip, port)
obj2 = MySQL3(ip, port)
obj3 = MySQL3('1.1.1.3', 80)
print(obj1)
print(obj2, obj2.__dict__)
print(obj3, obj3.__dict__)
실행 결과주: 앞의 네 가지 방식은 단례 모델을 실현할 수 있지만 모두 절대 단례 모델이 아니다. 새로운 대상을 만들 수 있지만 다섯 번째 방식은 절대 단례 모델이다. 전체적으로 한 번만 대상을 만들 수 있다.
이상은python이 단일 모드를 실현하는 5가지 방법의 상세한 내용입니다. 더 많은python 단일 모드에 대한 자료는 저희 다른 관련 글에 주목하세요!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.