定义私有类属性
将property
与装饰器结合实现属性私有化(更简单安全的实现get和set方法
)
fget
是获取属性的值的函数,fset
是设置属性值的函数,fdel
是删除属性的函数,doc
是一个字符串(like a comment).从实现来看,这些参数都是可选的
property有三个方法getter()
, setter()
和delete()
来指定fget, fset和fdel。 这表示以下这行
通过yield和__iter__
的结合, 我们可以把一个对象变成可迭代的
通过__str__
的重写, 可以直接通过想要的形式打印对象
partial使用上很像C++中仿函数(函数对象).
在stackoverflow给出了类似与partial的运行方式
eval我理解为一种内嵌的python解释器(这种解释可能会有偏差), 会解释字符串为对应的代码并执行, 并且将执行结果返回
看一下下面这个例子
exec在Python中会忽略返回值, 总是返回None, eval会返回执行代码或语句的返回值
exec
和eval
在执行代码时, 除了返回值其他行为都相同
在传入字符串时, 会使用compile(source, '<string>', mode)
编译字节码. mode的取值为exec
和eval
getattr(object, name[, default])
Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object’s attributes, the result is the value of that attribute. For example, getattr(x, ‘foobar’) is equivalent to x.foobar. If the named attribute does not exist, default is returned if provided, otherwise AttributeError is raised.
通过string类型的name, 返回对象的name属性(方法)对应的值, 如果属性不存在, 则返回默认值, 相当于object.name
只发一张网上的图, 然后差文档就好了, 这个是记不住的
一个非常好用, 很多人又不知道的功能