Python 3 介绍(十八)--面向对象编程

目录

1. 类的概念

创建类

2. 对象的创建

构造函数

3. 方法

4. 属性

类属性 vs 实例属性

5. 继承

6. 多态

7. 封装

8. 静态方法和类方法

静态方法

类方法

总结


 

面向对象编程(Object-Oriented Programming, OOP)是现代编程中最常用的设计范式之一。Python 作为一种支持多种编程范式的语言,自然也支持面向对象编程。在Python中,面向对象编程主要通过类(Class)和对象(Object)来实现。

1. 类的概念

类是面向对象编程中的核心概念,它是对象的模板或蓝图,描述了一组具有相同特征的对象。类定义了对象的状态(属性)和行为(方法)。

创建类

 

python

深色版本

1class MyClass:
2    def __init__(self, attribute1, attribute2):
3        self.attribute1 = attribute1
4        self.attribute2 = attribute2
5    
6    def method(self):
7        print(f"Attribute 1: {self.attribute1}, Attribute 2: {self.attribute2}")
8
9# 创建对象
10obj = MyClass("Value1", "Value2")
11obj.method()  # 输出: Attribute 1: Value1, Attribute 2: Value2

2. 对象的创建

对象是类的实例。在Python中,通过调用类的构造函数来创建对象。

构造函数

__init__ 方法是类的一个特殊方法,当创建新对象时会被自动调用。这个方法用于初始化对象的状态。

 

python

深色版本

1class Person:
2    def __init__(self, name, age):
3        self.name = name
4        self.age = age
5
6# 创建Person对象
7person = Person("Alice", 30)
8print(person.name)  # 输出: Alice
9print(person.age)   # 输出: 30

3. 方法

类中的方法是定义在类内部的函数,通常用于描述对象的行为。

 

python

深色版本

1class Car:
2    def __init__(self, brand, model):
3        self.brand = brand
4        self.model = model
5    
6    def start_engine(self):
7        print(f"{self.brand} {self.model} engine started.")
8
9car = Car("Toyota", "Corolla")
10car.start_engine()  # 输出: Toyota Corolla engine started.

4. 属性

属性是类的变量,用于描述对象的状态。

类属性 vs 实例属性

  • 类属性:所有实例共享的属性。
  • 实例属性:每个实例独有的属性。
 

python

深色版本

1class Employee:
2    company_name = "ABC Corp"  # 类属性
3    
4    def __init__(self, name, salary):
5        self.name = name  # 实例属性
6        self.salary = salary  # 实例属性
7        
8emp1 = Employee("John Doe", 50000)
9emp2 = Employee("Jane Smith", 60000)
10
11print(emp1.company_name)  # 输出: ABC Corp
12print(emp2.company_name)  # 输出: ABC Corp
13print(Employee.company_name)  # 输出: ABC Corp

5. 继承

继承允许创建一个新类(派生类或子类),继承现有类(基类或父类)的属性和方法。

 

python

深色版本

1class Animal:
2    def __init__(self, name):
3        self.name = name
4    
5    def speak(self):
6        pass
7
8class Dog(Animal):
9    def speak(self):
10        return f"{self.name} says Woof!"
11
12class Cat(Animal):
13    def speak(self):
14        return f"{self.name} says Meow!"
15
16dog = Dog("Buddy")
17cat = Cat("Whiskers")
18
19print(dog.speak())  # 输出: Buddy says Woof!
20print(cat.speak())  # 输出: Whiskers says Meow!

6. 多态

多态是指允许不同类的对象对同一消息作出响应的能力。在Python中,多态可以通过方法重写来实现。

 

python

深色版本

1class Animal:
2    def speak(self):
3        raise NotImplementedError("Subclass must implement this abstract method")
4
5class Dog(Animal):
6    def speak(self):
7        return "Woof!"
8
9class Cat(Animal):
10    def speak(self):
11        return "Meow!"
12
13def animal_sound(animal):
14    print(animal.speak())
15
16animal_sound(Dog())  # 输出: Woof!
17animal_sound(Cat())  # 输出: Meow!

7. 封装

封装是指隐藏对象的内部实现细节,并只暴露必要的接口。Python中没有严格的访问控制(如private、protected关键字),但可以通过约定来实现类似的效果。

 

python

深色版本

1class BankAccount:
2    def __init__(self, balance):
3        self._balance = balance
4    
5    def deposit(self, amount):
6        self._balance += amount
7    
8    def withdraw(self, amount):
9        if amount > self._balance:
10            raise ValueError("Insufficient funds")
11        self._balance -= amount
12    
13    def get_balance(self):
14        return self._balance
15
16account = BankAccount(1000)
17account.deposit(500)
18print(account.get_balance())  # 输出: 1500
19account.withdraw(200)
20print(account.get_balance())  # 输出: 1300

8. 静态方法和类方法

除了实例方法外,Python还支持静态方法和类方法。

静态方法

静态方法不接受类或实例作为第一个参数,通常用于执行与类无关的任务。

 

python

深色版本

1class MathUtils:
2    @staticmethod
3    def add(a, b):
4        return a + b
5
6print(MathUtils.add(1, 2))  # 输出: 3

类方法

类方法的第一个参数是类本身,通常用于创建类的实例或其他与类相关的工作。

 

python

深色版本

1class Date:
2    @classmethod
3    def today(cls):
4        return cls(2023, 9, 14)
5
6today_date = Date.today()
7print(today_date.year, today_date.month, today_date.day)  # 输出: 2023 9 14

总结

面向对象编程是Python中一个重要的概念,通过类和对象来组织代码,使得代码更易于理解和维护。通过上述示例,我们可以看到如何在Python中定义类、创建对象、实现继承、多态、封装等OOP的关键特性。希望这些例子对你理解和应用Python的面向对象编程有所帮助。如果你有更具体的问题或需求,请随时提出。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值