-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtest.py
40 lines (35 loc) · 868 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# PROJECT_NAME: easyofd test
# CREATE_TIME: 2024/7/2 15:19
# E_MAIL: [email protected]
# AUTHOR: renoyuan
# note:recursion & singletons
a = range(997)
def test_recursion(a,num):
if num == len(a):
print("over")
return
else:
print(a[num])
test_recursion(a, num+1)
class Singletons(object):
obj = None
@staticmethod
def instance():
if Singletons.obj:
print("exists")
return Singletons.obj
else:
print("new instance")
Singletons.obj = Singletons()
return Singletons.obj
if __name__ =="__main__":
# try:
# test_recursion(a, 0)
# except RecursionError as e:
# raise e
import time
for i in range(5):
time.sleep(0.02)
obj = Singletons.instance()