码迷,mamicode.com
首页 > 其他好文 > 详细

面象对象的反射和单列模式

时间:2018-11-28 22:11:18      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:反射   lex   object   module   变量   error   res   lse   对象   

a ="普通变量a"
b ="普通变量b"
A ="普通常量A"
B ="普通常量B"
import sys
def func():
print("func,function")
def func1():
print("func1,function")
while 1:
res = input("<<<:").strip()
if res.upper() == "Q":
break
if hasattr(sys.modules[__name__],res):
object =getattr(sys.modules[__name__],res)
if callable(object):
object()
else:
print(object)
else:
print("Error")


单例模式
class Teacher:
flag = None
def __new__(cls,*args,**kwargs):
if cls.flag is None:
cls.flag = object.__new__(cls)
return cls.flag
def __init__(self,name):
self.name = name
alex1 = Teacher("alex")
alex2 = Teacher("alex")
yuan = Teacher("yuan")
print(alex1.name)
print(yuan.name)

面象对象的反射和单列模式

标签:反射   lex   object   module   变量   error   res   lse   对象   

原文地址:https://www.cnblogs.com/liurenli/p/10034299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!