反射

通过字符串映射或者修改程序运行时的状态、属性、方法, 有一下4个方法

小例子--根据用户输入调用方法:

class Dog(object):

    def __init__(self,name):
self.name = name def eat(self):
print("%s is eating..",self.name) d= Dog('二哈')
choice = input(">>:").strip()
d.choice()
=========执行结果===========
>>:eat
Traceback (most recent call last):
File "E:/pywww/day06/11.py", line 13, in <module>
d.choice
AttributeError: 'Dog' object has no attribute 'choice'

这里用户输入的只是一个字符串,所以不会把输入的内容当作类的方法执行。

最原始的办法就是加个判断,然后判断输入的字符串是不是在这个类里有这个方法,但是这种灵活度不好。所以可以用到下面这种方法。

hasattr(obj,name_str)

输入一个字符串,判断对象有没有这个方法。

class Dog(object):

    def __init__(self,name):
self.name = name def eat(self):
print("%s is eating.."% self.name) d= Dog('二哈')
choice = input(">>:").strip() #eat
print(hasattr(d,choice)) #True

getattr(obj,name_str)

如果是方法返回对象的内存地址,如果是属性直接返回该属性的值

print(getattr(d,choice)) #<bound method Dog.eat of <__main__.Dog object at 0x0000000000A72358>>

如果是一个不存在的方法会报错:AttributeError: 'Dog' object has no attribute 'aa'

既然是地址就说明加上括号就可以调用了:

class Dog(object):

    def __init__(self,name):
self.name = name def eat(self):
print("%s is eating.."% self.name) d= Dog('二哈')
choice = input(">>:").strip() #eat
getattr(d,choice)() #二哈 is eating..

以上两个方法可以组合起来使用:

if hasattr(d,choice):
getattr(d,choice)() #二哈 is eating..

也可以赋值给一个变量,然后传参给方法

class Dog(object):

    def __init__(self,name):
self.name = name def eat(self,food):
print("%s is eating.."% self.name,' like ',food) d= Dog('二哈')
choice = input(">>:").strip() #eat
if hasattr(d,choice):
func = getattr(d,choice)
func('包子') #二哈 is eating.. like 包子

setattr(x,'y',v) x.y = v

添加一个方法

def bulk(self):                                                  #先定义要添加的方法
print('%s wang wang wang' % self.name) class Dog(object): def __init__(self,name):
self.name = name def eat(self,food):
print("%s is eating.."% self.name,' like ',food) d= Dog('二哈')
choice = input(">>:").strip() #bulk
if hasattr(d,choice):
func = getattr(d,choice)
func('包子')
else:
setattr(d,choice,bulk)
d.bulk(d) #bulk 是你输入的字符串 ,这里要把d传进去,不然提示你少传一个参数进去

上面是动态装载一个方法,也可以动态装载一个属性

 setattr(d,choice,22) #age
print(getattr(d,choice)) #22

delattr(obj,name_str)

动态删除属性或方法

 delattr(d,choice)

python类的反射的更多相关文章

  1. Python类总结-反射及getattr,setattr

    类反射的四个基本函数 hasattr getattr setattr delattr #反射 class BlackMedium: feature = 'Ugly' def __init__(self ...

  2. python类的反射使用方法

    曾经,博主的房东养了只金毛叫奶茶,今天就拿它当议题好了. 博主写本文时正在被广州的蚊子围攻. #反射练习 class animal(object): def __init__(self,name,fo ...

  3. Python类(五)-反射

    反射即通过字符串映射或修改程序运行时的状态.属性.方法 有4个方法: hasattr(): hasattr(object,string):object为实例化的对象,string为字符串 判断对象ob ...

  4. python(7)– 类的反射

    python中的反射功能是由以下四个内置函数提供:hasattr.getattr.setattr.delattr,改四个函数分别用于对对象内部执行:检查是否含有某成员.获取成员.设置成员.删除成员. ...

  5. python面试题~反射,元类,单例

    1 什么是反射?以及应用场景? test.py def f1(): print('f1') def f2(): print('f2') def f3(): print('f3') def f4(): ...

  6. python基础-类的反射

    1)反射是通过字符串方式映射内存中的对象. python中的反射功能是由以下四个内置函数提供:hasattr.getattr.setattr.delattr, 改四个函数分别用于对对象内部执行:检查是 ...

  7. python中的反射

    在绝大多数语言中,都有反射机制的存在.从作用上来讲,反射是为了增加程序的动态描述能力.通俗一些,就是可以让用户参与代码执行的决定权.在程序编写的时候,我们会写很多类,类中又有自己的函数,对象等等.这些 ...

  8. python面向对象进阶 反射 单例模式 以及python实现类似java接口功能

    本篇将详细介绍Python 类的成员.成员修饰符.类的特殊成员. 类的成员 类的成员可以分为三大类:字段.方法和特性. 注:所有成员中,只有普通字段的内容保存对象中,即:根据此类创建了多少对象,在内存 ...

  9. Python之路- 反射&定制自己的数据类型

    一.isinstance和issubclass isinstance(obj,cls)检查是否obj是否是类 cls 的对象 issubclass(sub, super)检查sub类是否是 super ...

随机推荐

  1. 在生产环境下禁用swagger

    学习目标 快速学会使用注解关闭Swagger2,避免接口重复暴露. 使用教程 禁用方法1:使用注解@Profile({"dev","test"}) 表示在开发或 ...

  2. The requested profile "account" could not be activated because it does not exist 无法maven install的 解决办法,勾选红框选择的选项即可

  3. 【Leetcode】Single Number

    Given an array of integers, every element appears twice except for one. Find that single one. Note:Y ...

  4. C#空接合操作符——??

    操作符: ?? 用法:C = A ?? B; 解释:if(A != null){ C=A;} else{C=B}     类似三元运算符 :? 例子: Int32? num1=null; Int32? ...

  5. Margarite and the best present

    Little girl Margarita is a big fan of competitive programming. She especially loves problems about a ...

  6. svg图转canvas,完全阔以的

    遇到的问题:页面中存在svg画的图,也存在canvas图,在用 html2canvas 截取页面的图就导致有图画缺失,至少我需要的缺失了. 一.如果页面单纯的存在一个svg画的图,转为canvas就很 ...

  7. Go语言基础之5--数组(array)和切片(slince)

    一.数组(array) 1.1 数组定义 1)含义: 数组是同一类型的元素集合. 数组是具有固定长度并拥有零个或者多个相同数据类型元素的序列. 2)定义一个数组的方法: var 变量名[len] ty ...

  8. ymPrompt.js消息提示组件

    转载:https://www.cnblogs.com/linzheng/archive/2010/11/15/1878058.html 使用说明: 1.在页面中引入ymPrompt.js.如:< ...

  9. MySQL之concat以及group_concat的用法

    本文中使用的例子均在下面的数据库表tt2下执行: 一.concat()函数 1.功能:将多个字符串连接成一个字符串. 2.语法:concat(str1, str2,...) 返回结果为连接参数产生的字 ...

  10. python中的设计模式

    单例模式:Python 的单例模式最好不要借助类(在 Java 中借助类是因为 Java 所有代码都要写在类中),而是通过一个模块来实现.一个模块的模块内全局变量.模块内全局函数,组合起来就是一个单例 ...