php中文网

理解 Python 中的多态性

php中文网

本文深入解释了 python 中的多态性,强调了它在面向对象编程中的作用。


多态性是一个希腊词,意思是多种形状或多种形式。多态性是面向对象编程(oop)中的一个基本概念。 python 是多态的,这意味着 python 中的对象能够采取多种形式。简而言之,多态性允许我们以多种不同的方式执行相同的操作。 (vishal,2021)此外,在 python 中,一切都是对象/类。 “guido van rossum 根据“一切都是一流”的原则设计了该语言。他写道:“我对 python 的目标之一是让所有对象都是“一流的”。我的意思是,我希望所有可以用该语言命名的对象(例如整数、字符串、函数、类、模块、方法等)都具有平等的地位。” (klein,2022,1.面向对象编程)

要理解多态性,了解“鸭子类型”概念很重要。“如果它看起来像鸭子并且嘎嘎叫起来像鸭子,那么它可能是鸭子。”在编程中,这意味着对象的适用性是由某些方法和属性的存在决定的,而不是对象的实际类型。在python中,鸭子类型是一个概念,其中对象的“适用性”由以下因素决定:某些方法或属性的存在,而不是对象的实际类型。换句话说,python 中的多态性意味着单个运算符、函数或类方法可以根据上下文具有多种形式/行为。

1。运算符多态
或者运算符重载允许像 这样的运算符根据操作数类型执行不同的操作。 (杰根森,2022)

例如:
两个整数

int_1 = 10
int_2 = 45
print(str(int_1 + int_2))
>>>
55

两根弦

str_1 = “10”
str_2 = “45”
print(str_1 + str_2)
>>>
1045

2。函数多态
像 len() 这样的内置函数可以作用于多种数据类型(例如字符串、列表),并为每种类型提供适当的测量长度。

例如:

str_1 = "polymorphic"
print(str(len(str_1)))
>>>
11

my_lst = [1, 2, 3, 4, 5]
print(str(len(my_lst))
>>>
5

3。类方法多态
允许子类覆盖从父类继承的方法。

例如:

#  parent class
class animal:
    def make_sound(self):
        pass

# child class
class dog(animal):
    def make_sound(self):
        return "woof!"

# child class
class cat(animal):
    def make_sound(self):
        return "meow!"
    def animal_sound(animal):
        print(animal.make_sound())
dog = dog()
cat = cat()
animal_sound(dog)  # output: woof!
animal_sound(cat)  # output: meow!

4。独立的类还可以定义具有相同名称但行为不同的方法。

立即学习“Python免费学习笔记(深入)”;

例如:

def enter_obj(obj):
    return obj.action() # independent class
class animal:
    def __init__(self, food):
        self.food = food
    # same name as the circle method different functionality
    def action(self):
        print(f"eats {self.food}")# independent class
class circle:
        def __init__(self, radius):
            self.radius = radius
        # same name as the animal method different functionality
        def action(self):
            return 3.14 * (self.radius ** 2)
cow = Animal("grass")
circ = Circle(7)
enter_obj(cow)print(str(enter_obj(circ))) 
>>> 
eats grass 
153.86

总之,多态性是python的一个强大特性。它允许对象呈现多种形式并根据上下文表现出不同的行为。 python 的鸭子类型通过关注某些方法或属性的存在而不是对象的实际类型来实现多态性。


参考文献:

jergenson, c.(2022 年,5 月 31 日)._ 什么是 python 中的多态性?_。有教育意义。 https://www.educative.io/blog/what-is-polymorphism-python

klein, b.(2022 年,2 月 1 日)。 面向对象编程/opp。 python 课程。 https://python-course.eu/oop/object-oriented-programming.php

维沙尔。 (2021 年,10 月 21 日)。 python 中的多态性。 pynative。 https://pynative.com/python-polymorphism/


最初于 2024 年 8 月 19 日发表于 understanding polymorphism in python - medium。

以上就是理解 Python 中的多态性的详细内容,更多请关注php中文网其它相关文章!

上一篇:Python 中的异常处理

下一篇:返回列表