在Python中,class是一種用于創建對象的藍圖或模板。它定義了一組屬性和方法,這些屬性和方法描述了該類創建的對象的特性和行為。
以下是使用class定義和使用類的一般步驟:
以下是一個簡單的類的示例:
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def say_hello(self):
print("Hello, my name is", self.name)
# 創建一個Person對象
person = Person("Alice", 25)
# 訪問對象的屬性
print(person.name) # 輸出 "Alice"
print(person.age) # 輸出 25
# 調用對象的方法
person.say_hello() # 輸出 "Hello, my name is Alice"
在上面的示例中,定義了一個名為Person的類,它有兩個屬性name和age,以及一個方法say_hello。通過創建Person對象,可以訪問對象的屬性和調用方法。