在python中,类是一种数据结构,用来封装数据和行为。类定义了对象的属性和方法,可以创建多个具有相同属性和方法的对象实例。类的用法
在python中,类是一种数据结构,用来封装数据和行为。类定义了对象的属性和方法,可以创建多个具有相同属性和方法的对象实例。类的用法包括以下几个方面:
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def greet(self):
print("Hello, my name is", self.name)
person1 = Person("Alice", 25)
person1.greet()
person2 = Person("Bob", 30)
person2.greet()
print(person1.name)
person1.greet()
class Student(Person):
def __init__(self, name, age, student_id):
super().__init__(name, age)
self.student_id = student_id
def study(self):
print("I am studying")
student1 = Student("Alice", 25, 12345)
student1.greet()
student1.study()
class BankAccount:
def __init__(self, balance):
self.__balance = balance
def deposit(self, amount):
self.__balance += amount
def withdraw(self, amount):
if amount <= self.__balance:
self.__balance -= amount
else:
print("Insufficient balance")
account1 = BankAccount(1000)
account1.deposit(500)
account1.withdraw(200)
--结束END--
本文标题: python中类的用法是什么
本文链接: https://lsjlt.com/news/586563.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0