Python基础(11)——反射、异常处理
2018-07-13 02:46:39来源:博客园 阅读 ()
1、反射
以下均是对对象的操作,而不是对类
1 class Foo(object): 2 3 def __init__(self): 4 self.name = 'wupeiqi' 5 6 def func(self): 7 return 'func' 8 9 obj = Foo() 10 11 # #### 检查是否含有成员 #### 12 hasattr(obj, 'name') 13 hasattr(obj, 'func') 14 15 # #### 获取类内与名称一样的成员地址 #### 16 getattr(obj, 'name') 17 getattr(obj, 'func') 18 19 # #### 设置成员 ####把类外的方法(函数)放到类内 20 setattr(obj, 'age', 18) 21 setattr(obj, 'show', lambda num: num + 1) 22 23 # #### 删除成员 #### 24 delattr(obj, 'name') 25 delattr(obj, 'func') 26 27 反射代码示例
1 def bulk(self): 2 print("%s is yelling...." %self.name) 3 4 class Dog(object): 5 def __init__(self,name): 6 self.name = name 7 8 def eat(self,food): 9 print("%s is eating..."%self.name,food) 10 11 12 d = Dog("NiuHanYang") 13 choice = input(">>:").strip() 14 15 if hasattr(d,choice): 16 getattr(d,choice)#d.choice 17 else: 18 setattr(d,choice,bulk) #d.talk = bulk#在对象中添加了choice输入内容的方法(函数) 19 func = getattr(d, choice) 20 func(d)
2、异常处理
1 #执行内容1,当1出错是,执行内容2 2 try: 3 执行内容1 4 except () as e:#把异常的内容存到e里 5 执行内容2
例子:
1 name=[1,2,3] 2 3 try: 4 name[3] 5 except IndexError as e: 6 print("错误原因是",e)
多异常处理
1 try: 2 name[3] 3 except IndexError as e: 4 print("错误原因是",e) 5 except KeyError as e: 6 print("错误原因是", e) 7 #或者 8 try: 9 name[3] 10 except (KeyError,IndexError) as e: 11 print("错误原因是",e) 12 # 或者 13 try: 14 name[3] 15 except Exception as e:#抓住所有错误 16 print("出错了", e)
自定义异常:
1 class WupeiqiException(Exception): 2 3 def __init__(self, msg): 4 self.message = msg 5 6 try: 7 raise WupeiqiException('我的异常')#主动触发异常 8 except WupeiqiException as e: 9 print e
http://www.cnblogs.com/wupeiqi/articles/5017742.html
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash