本文实例讲述了Python 面向对象之类class和对象基本用法。分享给大家供大家参考,具体如下:
类(class):定义一件事物的抽象特点,usually,类定义了事物的属性和它可以做到的性为
对象(object):是类的实例。
1.基本点
class MyClass(object): message = "hello,world" def show(self): print (self.message)
类名为MyClass 有一个成员变量:message,并赋予初值
类中定义了成员函数show(self),注意类中的成员函数必须带有参数self
参数self是对象本身的引用,在成员函数中可以引用self参数获得对象的信息
输出结果:
inst = Myclass() # 实例化一个MyClass 的对象 inst.show # 调用成员函数,无需传入self参数 hello,world
注: 通过在类名后面加小括号可以直接实例化类来获得对象变量,使用对象变量可以访问类的成员函数与成员变量。
2.构造函数
构造函数是一种特殊的类成员方法,主要用来创建对象初始化,python 中的类构造函数用__init__命名:
class MyClass(object): message = 'Hello, Developer.' def show(self): print self.message def __init__(self): print "Constructor is called" inst = MyClass() inst.show() >
打印结果:
>Constructor is called >Hello, Developer.
注:构造函数不能有返回值,python 中不能定义多个构造函数,但可以通过为命名参数提供默认值的方式达到用多种方式构造对象的目的。
3.析构函数
是构造的反向函数,在销毁或者释放对象时调用他们。
python 中为类定义析构函数的方法在类定义中定义一个名为__del__的没有返回值和参数的函数。
class MyClass(object): message = 'Hello, Developer.' def show(self): print self.message def __init__(self, name = "unset", color = "black"): print "Constructor is called with params: ",name, " ", color def __del__(self): print "Destructor is called!" inst = MyClass() inst.show() inst2 = MyClass("David") inst2.show() del inst, inst2 inst3 = MyClass("Lisa", "Yellow") inst3.show() del inst3 >
打印结果:
Constructor is called with params: unset black
Hello, Developer.
Constructor is called with params: David black
Hello, Developer.
Destructor is called!
Destructor is called!
Constructor is called with params: Lisa Yellow
Hello, Developer.
Destructor is called!
4.实例成员变量
构造函数中定义self引用的变量,因此这样的成员变量在python中叫做实例成员变量。
def __init__(self, name = "unset", color = "black"): print "Constructor is called with params: ",name, " ", color self.name = name self.color = color
5.静态函数和类函数:
python 支持两种基于类名访问成员的函数:静态函数,类函数。
区别在于:类函数有一个隐形参数cls可以用来获取类信息。而静态函数没有该函数。
静态函数用装饰器:@staticmethod定义
类函数使用装饰器:@classmethod定义
class MyClass(object): message = 'Hello, Developer.' def show(self): print (self.message) print ("Here is %s in %s!" % (self.name, self.color)) @staticmethod def printMessage(): print ("printMessage is called") print (MyClass.message) @classmethod def createObj(cls, name, color): print ("Object will be created: %s(%s, %s)"% (cls.__name__, name, color)) return cls(name, color) def __init__(self, name = "unset", color = "black"): print ("Constructor is called with params: ",name, " ", color) self.name = name self.color = color def __del__(self): print ("Destructor is called for %s!"% self.name) MyClass.printMessage() inst = MyClass.createObj( "Toby", "Red") print (inst.message) del inst
输出结果:
printMessage is called
Hello, Developer.
Object will be created: MyClass(Toby, Red)
Constructor is called with params: Toby Red
Hello, Developer.
Destructor is called for Toby!
6.私有成员
python 使用指定变量名格式的方法定义私有成员,即所有以双下划线“__”开始命名的成员都为私有成员。
class MyClass(object): def __init__(self, name = "unset", color = "black"): print "Constructor is called with params: ",name, " ", color self.__name = name self.__color = color def __del__(self): print "Destructor is called for %s!"% self.__name inst = MyClass("Jojo", "White") del inst
输出结果:
Constructor is called with params: Jojo White
Destructor is called for Jojo!
注明:书《Python 高效开发实战Django, Tornado, Flask, Twisted》总结
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python面向对象程序设计入门与进阶教程》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python编码操作技巧总结》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 明达年度发烧碟MasterSuperiorAudiophile2021[DSF]
- 英文DJ 《致命的温柔》24K德国HD金碟DTS 2CD[WAV+分轨][1.7G]
- 张学友1997《不老的传说》宝丽金首版 [WAV+CUE][971M]
- 张韶涵2024 《不负韶华》开盘母带[低速原抓WAV+CUE][1.1G]
- lol全球总决赛lcs三号种子是谁 S14全球总决赛lcs三号种子队伍介绍
- lol全球总决赛lck三号种子是谁 S14全球总决赛lck三号种子队伍
- 群星.2005-三里屯音乐之男孩女孩的情人节【太合麦田】【WAV+CUE】
- 崔健.2005-给你一点颜色【东西音乐】【WAV+CUE】
- 南台湾小姑娘.1998-心爱,等一下【大旗】【WAV+CUE】
- 【新世纪】群星-美丽人生(CestLaVie)(6CD)[WAV+CUE]
- ProteanQuartet-Tempusomniavincit(2024)[24-WAV]
- SirEdwardElgarconductsElgar[FLAC+CUE]
- 田震《20世纪中华歌坛名人百集珍藏版》[WAV+CUE][1G]
- BEYOND《大地》24K金蝶限量编号[低速原抓WAV+CUE][986M]
- 陈奕迅《准备中 SACD》[日本限量版] [WAV+CUE][1.2G]