码迷,mamicode.com
首页 > 编程语言 > 详细

python中self.__class__

时间:2015-06-29 19:19:30      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:

1. python中的self

python中的self就相当于C++中的this指针
也就是指向对象本身的指针
self.name = name 就是当前对象的成员变量name赋值为name。

 

2.python的self.__class__

表示当前实例对象的类.

例如:

if hasattr(self.__class__, fields) and len(self.__class__.fields) > 0:

 

3. hasattr():

hasattr用于确定一个对象是否具有某个属性。

语法:
 hasattr(object, name) -> bool
判断object中是否有name属性,返回一个布尔值。
>>> li=["zhangjing","zhangwei"]

>>> getattr(li,"pop")
<built-in method pop of list object at 0x011DF6C0>
>>> li.pop
<built-in method pop of list object at 0x011DF6C0>

>>> li.pop()
zhangwei

>>> getattr(li,"pop")()
zhangjing

>>>getattr(li, "append")("Moe") 

 

python中self.__class__

标签:

原文地址:http://www.cnblogs.com/blogofwyl/p/4607792.html

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