python继续找对象详解

 更新时间:2022年01月16日 10:31:44   作者:是数学系的小孩儿  
这篇文章主要为大家介绍了python继续找对象的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助

面向对象三大特征:封装、继承、多态

在这里插入图片描述

1、封装(提高程序的安全性)

class Car:
    def __init__(self,brand):
        self.brand=brand
    def start(self):
        print('自行车已被蹬跑')
car=Car('自行车')
car.start()
print(car.brand)

运行结果

自行车已被蹬跑
自行车

在这里插入图片描述

一开始它报错说没有定义name,我找老大一会不知道哪错了,原来是第六行

self.name,那个时候写成,了。

看在stu里边有哪些方法?就这样写

在这里插入图片描述

在类的外部可以通过_Student(类名)_ _age(不希望被访问的)进行访问

class Student:
    def __init__(self,name,age):
        self.name=name
        self.__age=age #年龄不希望在类的外部使用,所以加了两个_
    def show(self):
        print(self.name,self.__age)
stu=Student('张三',20)
stu.show()
#在类的外部使用name和age
print(stu.name)
print(dir(stu))
print(stu._Student__age)
张三 20
张三
['_Student__age', '__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'name', 'show']
20

2、继承(提高代码的复用性)

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

class Person(object):
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def info(self):
        print(self.name,self.age)
class Student(Person):
    def __init__(self,name,age,stu_no):
        super().__init__(name,age)
        self.stu_no=stu_no
class Teacher(Person):
    def __init__(self,name,age,teacherofyear):
        super(Teacher, self).__init__(name,age)
        self.teacherofyear=teacherofyear
stu=Student('张三',20,'1001')
teacher=Teacher('李四',34,10)
stu.info()
teacher.info()

张三 20
李四 34

3、方法重写

在这里插入图片描述

此时只能输出学号,不满足需求

class Person(object):
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def info(self):
        print(self.name,self.age)
class Student(Person):
    def __init__(self,name,age,stu_no):
        super().__init__(name,age)
        self.stu_no=stu_no
    def info(self):
        print(self.stu_no)
class Teacher(Person):
    def __init__(self,name,age,teacherofyear):
        super(Teacher, self).__init__(name,age)
        self.teacherofyear=teacherofyear
stu=Student('张三',20,'1001')
teacher=Teacher('李四',34,10)
stu.info()
teacher.info()

1001
李四 34

看下边的重载

class Person(object):
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def info(self):
        print(self.name,self.age)
class Student(Person):
    def __init__(self,name,age,stu_no):
        super().__init__(name,age)
        self.stu_no=stu_no
    def info(self):
        super(Student, self).info()
        print(self.stu_no)
class Teacher(Person):
    def __init__(self,name,age,teacherofyear):
        super(Teacher, self).__init__(name,age)
        self.teacherofyear=teacherofyear
stu=Student('张三',20,'1001')
teacher=Teacher('李四',34,10)
stu.info()
print('----------------------------')
teacher.info()

运行结果

张三 20
1001
----------------------------
李四 34

把教龄输出

class Person(object):
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def info(self):
        print(self.name,self.age)
class Student(Person):
    def __init__(self,name,age,stu_no):
        super().__init__(name,age)
        self.stu_no=stu_no
    def info(self):
        super(Student, self).info()
        print(self.stu_no)
class Teacher(Person):
    def __init__(self,name,age,teachofyear):
        super().__init__(name,age)
        self.teachofyear=teachofyear
    def info(self):
        super().info()
        print('教龄',self.teachofyear)
stu=Student('张三',20,'1001')
teacher=Teacher('李四',34,10)
stu.info()
print('----------------------------')
teacher.info()

运行结果

张三 20
1001
----------------------------
李四 34
教龄 10   

4、object类

在这里插入图片描述

5、多态(提高程序的可拓展性和可维护性)

在这里插入图片描述

在这里插入图片描述

Java就是静态语言,python就是动态语言

6、特殊方法和特殊属性 特殊方法

在这里插入图片描述

两个特殊的方法----创建

1初始化init

2new

特殊属性

两个下划线开始,两个下划线结束就是特殊属性

在这里插入图片描述

绑定两个属性

class A:
    pass
class B:
    pass
class C(A,B):
    def __init__(self,name,age):
        self.name=name
        self.age=age
#创建C类的对象
x=C('Jack',20)#x是C类的一个实例对象
print(x.__dict__)
{'name': 'Jack', 'age': 20}

pycharm使用的小发现

点击加号那里,就会释放,点击减号就会缩成这样,这说明了被缩起来的内容都是隶属于这个类的。

在这里插入图片描述

看最左侧出现了箭头,他的意思是重写person类中的方法

在这里插入图片描述

英文

在这里插入图片描述

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注脚本之家的更多内容!

相关文章

  • Pycharm中import torch报错,python中import torch不报错的解决

    Pycharm中import torch报错,python中import torch不报错的解决

    这篇文章主要介绍了Pycharm中import torch报错,python中import torch不报错的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-01-01
  • python学生管理系统学习笔记

    python学生管理系统学习笔记

    这篇文章主要为大家详细介绍了python学生管理系统的学习笔记,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-03-03
  • Python命令启动Web服务器实例详解

    Python命令启动Web服务器实例详解

    这篇文章主要介绍了Python命令启动Web服务器实例详解的相关资料,需要的朋友可以参考下
    2017-02-02
  • 解决pycharm运行时interpreter为空的问题

    解决pycharm运行时interpreter为空的问题

    今天小编就为大家分享一篇解决pycharm运行时interpreter为空的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-10-10
  • 利用Python通过获取剪切板数据实现百度划词搜索功能

    利用Python通过获取剪切板数据实现百度划词搜索功能

    大家是不是嫌弃每次打开百度太麻烦?今天教大家利用Python通过获取剪切板数据实现百度划词搜索功能,用程序直接打开网页,需要的朋友可以参考下
    2021-06-06
  • Python+Pygame实战之泡泡游戏的实现

    Python+Pygame实战之泡泡游戏的实现

    这篇文章主要为大家介绍了如何利用Python中的Pygame模块实现泡泡游戏,文中的示例代码讲解详细,对我们学习Python游戏开发有一定帮助,需要的可以参考一下
    2022-07-07
  • python中pandas输出完整、对齐的表格的方法

    python中pandas输出完整、对齐的表格的方法

    今天使用python计算数据相关性,但是发现计算出的表格中间好多省略号,而且也不对齐。怎么解决这个问题,下面小编给大家带来了python中pandas如何输出完整、对齐的表格,感兴趣的朋友一起看看吧
    2021-10-10
  • TensorFlow2基本操作之合并分割与统计

    TensorFlow2基本操作之合并分割与统计

    这篇文章主要介绍了TensorFlow2基本操作之合并分割与统计,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-09-09
  • Python批量解压&压缩文件夹的示例代码

    Python批量解压&压缩文件夹的示例代码

    这篇文章主要介绍了利用Python实现批量解压&压缩文件夹的示例代码,文中的实现步骤讲解详细,感兴趣的小伙伴快跟随小编一起动手试一试
    2022-04-04
  • Python读取GSMap数据的问题

    Python读取GSMap数据的问题

    这篇文章主要介绍了Python读取GSMap数据的问题,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-03-03

最新评论