ฉันคิดว่าฉันต้องใช้เวลาพอสมควรในการแสดงให้คุณเห็นว่าคุณสามารถแปลวัตถุเพื่อเขียนตามคำบอกผ่านdict(obj)
ได้อย่างไร
class A(object):
d = '4'
e = '5'
f = '6'
def __init__(self):
self.a = '1'
self.b = '2'
self.c = '3'
def __iter__(self):
# first start by grabbing the Class items
iters = dict((x,y) for x,y in A.__dict__.items() if x[:2] != '__')
# then update the class items with the instance items
iters.update(self.__dict__)
# now 'yield' through the items
for x,y in iters.items():
yield x,y
a = A()
print(dict(a))
# prints "{'a': '1', 'c': '3', 'b': '2', 'e': '5', 'd': '4', 'f': '6'}"
ส่วนสำคัญของรหัสนี้คือ__iter__
ฟังก์ชั่น
ตามที่ความคิดเห็นอธิบายสิ่งแรกที่เราทำคือหยิบรายการ Class และป้องกันสิ่งที่เริ่มต้นด้วย '__'
เมื่อคุณสร้างขึ้นdict
แล้วคุณสามารถใช้update
ฟังก์ชัน dict และส่งผ่านในอินสแตนซ์__dict__
และผ่านในอินสแตนซ์
สิ่งเหล่านี้จะให้พจนานุกรมคลาส + อินสแตนซ์ที่สมบูรณ์ของสมาชิก ตอนนี้สิ่งที่เหลือคือการย้ำพวกเขาและให้ผลตอบแทน
นอกจากนี้หากคุณวางแผนที่จะใช้สิ่งนี้มากคุณสามารถสร้าง@iterable
มัณฑนากรเรียนได้
def iterable(cls):
def iterfn(self):
iters = dict((x,y) for x,y in cls.__dict__.items() if x[:2] != '__')
iters.update(self.__dict__)
for x,y in iters.items():
yield x,y
cls.__iter__ = iterfn
return cls
@iterable
class B(object):
d = 'd'
e = 'e'
f = 'f'
def __init__(self):
self.a = 'a'
self.b = 'b'
self.c = 'c'
b = B()
print(dict(b))