> 백엔드 개발 > 파이썬 튜토리얼 > Python 메모리 릴리스 원칙

Python 메모리 릴리스 원칙

巴扎黑
풀어 주다: 2016-12-09 13:41:02
원래의
1208명이 탐색했습니다.

def getInit(class_name):
    """动态加载模块"""
    resultmodule = __import__(class_name, globals(), locals(), [class_name])
    resultclass = getattr(resultmodule, class_name)
    return resultclass()
import threading, time
        
class b:
    def __init__(self, *args, **kwargs):        
        self.name = "b"
        self.class_name = "a"
        print "%s is inited" % (self.name)
        
    def __del__(self):
        print "%s is deleted" % (self.name)
    
    def other_run(self, obj=None):
        if obj:
            obj.run()
    
    def run(self, *args, **kwargs):
        obj = getInit(self.class_name)
        obj.run()
        self.other_run(obj)        
        print "%s is run" % (self.name)
        
def treading():
    n = 0
    c = b()
    while n<2:
        n += 1
        print "\n"
        print "start"
        c.run()
        print "end"
        print "\n"
    
if __name__ == &#39;__main__&#39;:
    param = {}
    th = threading.Thread(target = treading, args = ())
    th.start()
    
exit()
로그인 후 복사
b is inited
start
a is inited
a is run
a is run
b is run
a is deleted
end
start
a is inited
a is run
a is run
b is run
a is deleted
end
b is deleted
로그인 후 복사

a를 다시 로드하고 각 루프에서 메모리를 해제합니다.

def getInit(class_name):
    resultmodule = __import__(class_name, globals(), locals(), [class_name])
    resultclass = getattr(resultmodule, class_name)
    return resultclass()
import threading, time
import a
        
class b:
    def __init__(self, *args, **kwargs):        
        self.name = "b"
        self.class_name = "a"
        self.obj = getInit(self.class_name)
        print "%s is inited" % (self.name)
        
    def __del__(self):
        print "%s is deleted" % (self.name)
    
    def other_run(self):
        if self.obj:
            self.obj.run()
    
    def run(self, *args, **kwargs):
        self.obj.run()
        self.other_run()        
        print "%s is run" % (self.name)
        
def treading():
    n = 0
    c = b()
    while n<2:
        n += 1
        print "\n"
        print "start"
        c.run()
        print "end"
        print "\n"
    
if __name__ == &#39;__main__&#39;:
    param = {}
    th = threading.Thread(target = treading, args = ())
    th.start()
    
exit()
로그인 후 복사
a is inited
b is inited
start
a is run
a is run
b is run
end
start
a is run
a is run
b is run
end
b is deleted
a is deleted
로그인 후 복사

A는 종료 후에만 해제됩니다.


메모리 해제는 다음과 같습니다. 뾰족한

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿