python中getattr()的用法

1.getattr() 是python 中的一个内置函数,用来获取对象中的属性值

2.getattr(obj,name[,default]) 其中obj为对象名,name是对象中的属性,必须为字符串。

3.两种表达式的区别

    第一种,getattr(obj,"_attr")
    第二种,getattr(obj,"_" + attr)
    第一种只能访问_attr属性,而第二种可以访问所有带下划线的属性

>>> class Student:  # 定义类
	def __init__(self,name,identity,age):
		self._name = name
		self._identity = identity
		self.age = age
	def __getitem__(self,item):
		if isinstance(item,str):
			return getattr(self,"_item")
>>> st=Student("Huang Lei",1323010212,12)  # 实例化
>>> st["age"]
Traceback (most recent call last):
  File "<pyshell#51>", line 1, in <module>
    st["age"]
  File "<pyshell#49>", line 8, in __getitem__
    return getattr(self,"_item")
AttributeError: 'Student' object has no attribute '_item'

这种方式只能访问'_item'属性。不论是否是带下划线的属性。如:

>>> st["name"]
Traceback (most recent call last):
  File "<pyshell#62>", line 1, in <module>
    st["name"]
  File "<pyshell#60>", line 8, in __getitem__
    return getattr(self,"_item")
AttributeError: 'Student' object has no attribute '_item'

>>> class Student:
	def __init__(self,name,identity,age):
		self._name = name
		self._identity = identity
		self.age = age
	def __getitem__(self,item):
		if isinstance(item,str):
			return getattr(self,"_" + item)
>>> st=Student("Huang Lei",1323010212,12)
>>> st["age"]
Traceback (most recent call last):
  File "<pyshell#56>", line 1, in <module>
    st["age"]
  File "<pyshell#54>", line 8, in __getitem__
    return getattr(self,"_" + item)
AttributeError: 'Student' object has no attribute '_age'
这一步虽然没有成功,但是明显能看出两者区别,这种方式多了一个下划线。

>>> st["name"]
'Huang Lei'
>>> s=["Huang Lei",1323010212,12]

name定义的时候有一个下划线,因此就是这种方式可以访问带有下划线的属性。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值