IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> python深入类和对象 -> 正文阅读

[Python知识库]python深入类和对象

声明:学习笔记,参考B站视频 https://www.bilibili.com/video/BV1Cq4y1Q7Qv?p=12

鸭子类型和多态

# -*- coding: utf-8 -*-

'''
鸭子类型
    当看到一只鸟走起来像鸭子
    游泳起来像鸭子,叫起来也像鸭子
    那么这只鸟就可以被成为鸭子
'''

class Cat(object):
    def say(self):
        print('i am a cat')


class Dog(object):
    def say(self):
        print('i am a dog')


class Duck(object):
    def say(self):
        print('i am a duck')


animal_list = [Cat, Dog, Duck]
for animal in animal_list:
    # 都有共同的say方法
    animal().say()
'''
运行结果:
    i am a cat
    i am a dog
    i am a duck
'''

'''
多态:
    python中不一定需要非要继承某个类才可以实现某个方法
    所有类都实现了一个共同的方法(方法名一样)就可以实现多态
'''
a = [1, 2]
b = [3, 4]

tuple_list = [5, 6]
set_list = set()
set_list.add(7)
set_list.add(8)

# extend(可迭代)  
a.extend(b)
print(a)  # [1, 2, 3, 4]
b.extend(tuple_list)
print(b)  # [3, 4, 5, 6]
tuple_list.extend(set_list)
print(tuple_list)  # [5, 6, 8, 7]

isinstance和type的区别

# -*- coding: utf-8 -*-

class A:
    pass

class B(A):
    pass

b = B()

# isinstance()判断对象类型  推荐使用
print(isinstance(b,B))  # True
print(isinstance(b,A))  # True

print(type(b))  # <class '__main__.B'>

# type判断对象类型 但是对继承关系判断有误差
# (is 判断id 是否相同) / (=  判断值 是否相同)
print(type(b) is B)     # True
print(type(b) is A)     # False

类变量和实例变量

# -*- coding: utf-8 -*-

class A:
    # 类变量
    aa = 11

    def __init__(self, x, y):
        # 实例变量(带self的)
        self.x = x
        self.y = y


a = A(1, 2)
# 1.1实例首先查找自身是否有这个属性
print(a.x)  # 1
print(a.y)  # 1
# 1.2如果实例自身没有这个变量时,会向上到类变量中查找
print(a.aa)  # 11

# 2.类调用类属性不会向下查找
print(A.aa)  # 11
# 如果类调用实例属性则会报错
# print(A.x)  # AttributeError: type object 'A' has no attribute 'x'

# 3.类属性修改后 实例调用的类属性也会被修改
A.aa = 22
print(a.aa)  # 22

# 4.实例中类属性的值被修改后 不会影响类的属性值
a.aa = 100	# 新建实例a的变量aa 并赋值100
print(a.aa)  # 100
print(A.aa)  # 22

# 5.类变量所有实例共享
b = A(3, 5)
print(b.aa)  # 22

实例方法

# -*- coding: utf-8 -*-

class Date:
    def __init__(self, year, month, day):
        self.year = year
        self.month = month
        self.day = day

    def __str__(self):
        return '{}/{}/{}'.format(self.year, self.month, self.day)

    # 实例方法(最常用的定义方式)
    def tomorrow(self):
        self.day += 1


if __name__ == '__main__':
    new_day = Date(2018, 12, 31)
    print(new_day)  # 2018/12/31
    new_day.tomorrow()  # --> tomorrow(new_day)
    print(new_day)  # 2018/12/32

静态方法 @staticmethod

# -*- coding: utf-8 -*-

class Date:
    def __init__(self, year, month, day):
        self.year = year
        self.month = month
        self.day = day

    def __str__(self):
        return '{}/{}/{}'.format(self.year, self.month, self.day)

    # 静态方法 @staticmethod
    @staticmethod
    def parse_from_string(date_str):
        year, month, day = tuple(date_str.split('-'))
        # 静态方法中 需要注意类名(Date需与类名Date一致)
        return Date(int(year), int(month), int(day))

    @staticmethod
    def from_string(date_str):
        year, month, day = tuple(date_str.split('-'))
        if year > 2000:
            # 这种情况推荐使用 静态方法
            return True
        else:
            return False


if __name__ == '__main__':
    '''
    不使用静态方法示例(繁琐 每个对象的调用都有重复操作)
    '''
    date_str = '2018-12-31'
    # tuple 用来拆包
    year, month, day = tuple(date_str.split('-'))
    new_day = Date(int(year), int(month), int(day))
    print(new_day)  # 2018/12/31

    '''
    使用静态方法(staticmethod)后的示例(直接定义到类内部中)
    '''
    new_day = Date.parse_from_string('2018-12-31')
    print(new_day)  # 2018/12/31

类方法 @classmethod

# -*- coding: utf-8 -*-

class Date:
    def __init__(self, year, month, day):
        self.year = year
        self.month = month
        self.day = day

    def __str__(self):
        return '{}/{}/{}'.format(self.year, self.month, self.day)

    # 类方法
    @classmethod
    def parse_from_string(cls, date_str):
        year, month, day = tuple(date_str.split('-'))
        # cls 可以解决掉静态方法中 需要注意类名的弊端
        return cls(int(year), int(month), int(day))


if __name__ == '__main__':
    '''
    类方法比静态方法灵活
    '''
    new_day = Date.parse_from_string('2018-12-31')
    print(new_day)  # 2018/12/31
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-09-26 10:07:25  更:2021-09-26 10:08:37 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 15:52:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码