原文:https://www.cnblogs.com/wupeiqi/articles/4980620.html 1、必备 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #### 第一波 #### def foo(): print 'foo' foo #表示是函数 foo() # Read More
posted @ 2019-07-08 21:34 奋斗终生 Views(984) Comments(0) Diggs(0) Edit
原文:https://foofish.net/python-gc.html GC作为现代编程语言的自动内存管理机制,专注于两件事:1. 找到内存中无用的垃圾资源 2. 清除这些垃圾并把内存让出来给其他对象使用。GC彻底把程序员从资源管理的重担中解放出来,让他们有更多的时间放在业务逻辑上。但这并不意味 Read More
posted @ 2019-07-08 15:28 奋斗终生 Views(1696) Comments(0) Diggs(0) Edit