Object-Oriented Programming ใน Python ระดับกลาง
Jake Roach
Data Engineer
class Person:
def __init__(self, name):
self.name = name
def __eq__(self, other):
return self.name == other.name
ปรับแต่งการทำงานของ ==
__eq__()self และ otherbryce = Person("Bryce")
orion = Person("Orion")
print(bryce == orion)
False
chuck = Person("Charles Carmichael")
charles = Person("Charles Carmichael")
print(chuck == charles)
True
class Team:
def __init__(self, team_members):
self.team_members = team_members
# Create two Team objects, attempt to add them
rookies = Team(["Casey", "Emmitt"])
veterans = Team(["Mike", "Chuck"])
dream_team = rookies + veterans
Traceback (most recent call last):
File "<stdin>", line 8, in <module>
TypeError: unsupported operand type(s) for +: 'Team' and 'Team'
class Team:
def __init__(self, team_members):
# team_members is a list of names
self.team_members = team_members
def __add__(self, other):
# Adding Team objects creates a larger Team
return Team(self.team_members + other.team_members)
__add__() เพื่อโอเวอร์โหลด +self และ other จะถูกส่งเข้า __add__()Team ใหม่โดยรวม team_members จากออบเจกต์ที่ "บวก" กัน# Create two Team objects
rookies = Team(["Casey", "Emmitt"])
veterans = Team(["Mike", "Chuck"])
# Attempt to add these two Teams together
dream_team = rookies + veterans
print(type(dream_team))
print(dream_team.team_members)
Team
["Casey", "Emmitt", "Mike", "Chuck"]
class Team:
def __init__(self, team_members):
self.team_members = team_members
class Employee:
def __init__(self, name, title):
self.name = name
self.title = title
def __add__(self, other):
# Use the + operator to create a
# Team with the name of each Employee
return Team([self.name, other.name])
จะสร้าง Team จากการรวม Employee หลายตัวได้อย่างไร?
__add__ ถูกกำหนดไว้ในคลาส EmployeeTeam ใหม่จากรายชื่อของ EmployeeEmployee สองตัวคือ Team เดียว# Create two Employee objects
anna = Employee("Anna", "Technical Specialist")
jeff = Employee("Jeffrey", "Musician")
# Now, attempt to add these together to create a team
audio_team = anna + jeff
print(type(audio_team))
print(audio_team.team_members)
Team
["Anna", "Jeffrey"]
| ตัวดำเนินการ | Magic Method | ประเภท |
|---|---|---|
| - | __sub__ |
เลขคณิต |
| != | __ne__ |
การเปรียบเทียบ |
| < | __lt__ |
การเปรียบเทียบ |
| > | __gt__ |
การเปรียบเทียบ |
| += | __iadd__ |
การกำหนดค่า |
| and | __and__ |
ตรรกะ |
| in | __contains__ |
การตรวจสอบสมาชิก |
| is | __is__ |
เอกลักษณ์ |
... และอีกมากมาย!
Object-Oriented Programming ใน Python ระดับกลาง