Python面向对象之类和实例用法分析


Posted in Python onJune 08, 2019

本文实例讲述了Python面向对象之类和实例用法。分享给大家供大家参考,具体如下:

虽然 Python 是解释性语言,但是它是面向对象的,能够进行对象编程。至于何为面向对象,在此就不详说了。面向对象程序设计本身就很值得深入学习,如要了解,请参阅网上其他的资料。

面向对象最重要的概念就是类(Class)和实例(Instance),牢记 类 是抽象的模板,比如Student类,而实例是根据类创建出来的一个个具体的“对象”,每个对象都拥有相同的方法,但各自的数据可能不同。

以Student类为例,在Python中,定义类是通过 class 关键字:

注意:Python 2.X 需要在类名后面加 (object)  这边 pass 语句表示空语句段。

class 后面紧接着是类名,即Student,类名通常是大写开头的单词,紧接着是(object),表示该类是从哪个类继承下来的,继承的概念我们后面再讲,通常,如果没有合适的继承类,就使用object类,这是所有类最终都会继承的类。

class Student(object):
  pass

Python 3.X 则只需要类名,不需要加 (object)

class Student:
  pass

实例

创建实例是通过类名+()实现的(若 __init__ 无或仅有self);如定义好了Student类,就可以根据Student类创建出Student的实例,如下:

class Student(object):
  pass
May = Student()          # 新建May实例
print(May)

运行结果:

<__main__.Student object at 0x0000000001DCC400>

可以看到,变量May指向的就是一个Student的object,后面的0x006C4770是内存地址,每个object的地址都不一样,而Student本身则是一个类。

可以自由地给一个实例变量绑定属性,比如,给实例 May 绑定一个 name 属性,这个 name 属性是实例 May 特有的,其他新建的实例是没有 name 属性的

class Student(object):
  pass
May = Student()         # 新建May实例
print(May)
May.name = "May"         # 给实例 May 绑定 name 属性为 "May"
print(May.name)
Peter = Student()        # 新建Peter实例
# print(Peter.name)       # 报错,因为Peter没有Name属性

那么,如果我们需要类必须绑定属性,那如何定义呢?  请参见下文。

__init__ 构造函数

由于类可以起到模板的作用,因此,可以在创建实例的时候,把一些我们认为必须绑定的属性强制填写进去。 (注意 __init__ 双下划线)

如对于Student类,我们定义 name 和 score 属性(所有Sudent 都须有的属性):

__init__方法的第一个参数永远是self,表示创建的实例本身,因此,在__init__方法内部,就可以把各种属性绑定到self,因为self就指向创建的实例本身。

有了__init__方法,在创建实例的时候,就不能传入空的参数了,必须传入与__init__方法匹配的参数,但self不需要传,Python解释器自己会把实例变量传进去:

class Student(object):
  def __init__(self, name, score):
    self.name = name
    self.score = score
May = Student("May",90)      # 须要提供两个属性
Peter = Student("Peter",85)
print(May.name, May.score)
print(Peter.name, Peter.score)

__del__ 析构函数

Just like the __init__ method, there is another special method __del__ which is called when an object is going to die i.e. it is no longer being used and is being returned to the computer system for reusing that piece of memory.

The __del__ method is run when the object is no longer in use and there is no guarantee when that method will be run. If you want to explicitly see it in action, we have to use the del statement which is what we have done here.

相对于 构造函数 Python 也有类似 C++ 中的析构函数 __del__ , Python的垃圾回收过程与常用语言的不一样,如果一定需要,最好需要使用del语句来激活。

私有变量

Note for C++/Java/C# Programmers
All class members (including the data members) are public and all the methods are virtual in Python.
One exception: If you use data members with names using the double underscore prefix such as __privatevar, Python uses name-mangling to effectively make it a private variable.
Thus, the convention followed is that any variable that is to be used only within the class or object should begin with an underscore and all other names are public and can be used by other classes/objects. Remember that this is only a convention and is not enforced by Python (except for the double underscore prefix).

Python 中定义私有变量,命名规则为前缀加两个下划线 “__” ,注意不可前后都包含__XXX__(该命名表示为类属性或内建变量);还有一种命名为单下划线 _XXX ,表示约定俗成不可访问的变量。

class Person(object):
  def __init__(self,name,sex):
    self.name = name
    self.__sex = sex       # sex 定义为私有变量
  def print_title(self):
    if self.sex == "male":
      print("man")
    elif self.sex == "female":
      print("woman")
May = Person("May","female")
print(May.name)    
print(May.__sex)           # 会报错

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
独特的python循环语句
Nov 20 Python
Python 'takes exactly 1 argument (2 given)' Python error
Dec 13 Python
Python 创建新文件时避免覆盖已有的同名文件的解决方法
Nov 16 Python
python文字和unicode/ascll相互转换函数及简单加密解密实现代码
Aug 12 Python
Python 类的魔法属性用法实例分析
Nov 21 Python
Tensorflow 模型转换 .pb convert to .lite实例
Feb 12 Python
python GUI库图形界面开发之PyQt5不规则窗口实现与显示GIF动画的详细方法与实例
Mar 09 Python
如何用python处理excel表格
Jun 09 Python
Pycharm github配置实现过程图解
Oct 13 Python
python模拟点击玩游戏的实例讲解
Nov 26 Python
详解用 python-docx 创建浮动图片
Jan 24 Python
Python+Appium实现自动抢微信红包
May 21 Python
Python学习笔记之自定义函数用法详解
Jun 08 #Python
Python3基础教程之递归函数简单示例
Jun 07 #Python
Python正则表达式匹配和提取IP地址
Jun 06 #Python
Python 常用模块 re 使用方法详解
Jun 06 #Python
Python比较配置文件的方法实例详解
Jun 06 #Python
Django中使用 Closure Table 储存无限分级数据
Jun 06 #Python
创建Django项目图文实例详解
Jun 06 #Python
You might like
PHP对字符串的递增运算分析
2010/08/08 PHP
初步介绍PHP扩展开发经验分享
2012/09/06 PHP
PHP弹出对话框技巧详细解读
2015/09/26 PHP
遍历指定目录,并存储目录内所有文件属性信息的php代码
2016/10/28 PHP
php微信公众平台开发(四)回复功能开发
2016/12/06 PHP
PHP 实现人民币小写转换成大写的方法及大小写转换函数
2017/11/17 PHP
Thinkphp5.0 框架实现控制器向视图view赋值及视图view取值操作示例
2019/10/12 PHP
用Javscript实现表单复选框的全选功能
2007/05/25 Javascript
如何使用jQUery获取选中radio对应的值(一句代码)
2013/06/03 Javascript
JavaScript字符串插入、删除、替换函数使用示例
2013/07/25 Javascript
javascript cookie的简单应用
2016/02/24 Javascript
js获取元素的偏移量offset简单方法(必看)
2017/07/05 Javascript
Express下采用bcryptjs进行密码加密的方法
2018/02/07 Javascript
Vue动态组件和异步组件原理详解
2019/05/06 Javascript
Angular2实现的秒表及改良版示例
2019/05/10 Javascript
Vue自定义指令结合阿里云OSS优化图片的实现方法
2019/11/12 Javascript
element-ui tree结构实现增删改自定义功能代码
2020/08/31 Javascript
[02:20]DOTA2亚洲邀请赛 IG战队出场宣传片
2015/02/07 DOTA
python完成FizzBuzzWhizz问题(拉勾网面试题)示例
2014/05/05 Python
Python中的time模块与datetime模块用法总结
2016/06/30 Python
Python语言的变量认识及操作方法
2018/02/11 Python
python实现zabbix发送短信脚本
2018/09/17 Python
Python实现字典按key或者value进行排序操作示例【sorted】
2019/05/03 Python
pycharm-professional-2020.1下载与激活的教程
2020/09/21 Python
为有想象力的人提供的生活方式商店:Firebox
2018/06/04 全球购物
Kappa英国官方在线商店:服装和运动器材
2020/11/22 全球购物
什么是Remote Module
2016/06/10 面试题
中专生学习生活的自我评价分享
2013/10/27 职场文书
技术总监的工作职责
2013/11/13 职场文书
主治医师岗位职责
2013/12/10 职场文书
幼师求职自荐信范文
2014/01/26 职场文书
趣味活动策划方案
2014/02/08 职场文书
贸易跟单员英文求职信
2014/04/19 职场文书
大学生实习介绍信
2015/05/05 职场文书
pytorch训练神经网络爆内存的解决方案
2021/05/22 Python
安装Ruby和 Rails的详细步骤
2022/04/19 Ruby