python类继承用法实例分析


Posted in Python onMay 27, 2015

本文实例讲述了python类继承用法。分享给大家供大家参考。具体如下:

help('object') # test
class Class1(object):
  """
  Class1 inherits the most basic container class object (just a place holder)
  this is the newer class writing convention, adding (object) is "still" optional
  """
  k = 7
  def __init__(self, color='green'):
    """
    Special method __init__() is called first (acts as Constructor).
    It brings in data from outside the class like the variable color.
    (in this case color is also set to a default value of green)
    The first parameter of any method/function in the class is always self,
    the name self is used by convention. Assigning color to self.color allows it
    to be passed to all methods within the class. Think of self as a carrier,
    or if you want impress folks call it target instance object.
    The variable k is assigned a value in the class, but outside of the methods.
    You can access k in a method using self.k
    """
    self.color = color
  def Hello1(self):
    print "Hello from Class1!"
  def printColor(self):
    """in this case self allows color to be passed"""
    print "I like the color", self.color
  def __localHello(self):
    """
    A variable or function with a double underline prefix and no or max. single
    underline postfix is considered private to the class and is not inherited or
    accessible outside the class.
    """
    print "A hardy Hello only used within the class!"
 
class Class2(Class1):
  """
  Class2 inherits Class1 (Class2 is the subclass, Class1 the base or superclass)
  Class1 has to be coded before Class2 for this to work!!!
  Class2 can now use any method of Class1, and even the variable k
  """
  def Hello2(self):
    print "Hello from Class2!"
    print self.k, "is my favorite number"
   
# the color blue is passed to __init__()
c1 = Class1('blue')
# Class2 inherited method __init__() from Class1
# if you used c2 = Class2(), the default color green would be picked
c2 = Class2('red')
print '-'*20
print "Class1 says hello:"
c1.Hello1()
print '-'*20
print "Class2 says a Class1 hello:"
c2.Hello1()
print '-'*20
print "Class2 says its own hello:"
c2.Hello2()
print '-'*20
print "Class1 color via __init__():"
c1.printColor()
print '-'*20
print "Class2 color via inherited __init__() and printColor():"
c2.printColor()
print '-'*20
print "Class1 changes its mind about the color:"
c1 = Class1('yellow') # same as: c1.__init__('yellow')
c1.printColor()
print '-'*20
print "Wonder what Class2 has to say now:"
c2.printColor()
print '-'*20
# this would give an error! Class1 does not have a method Hello2()
if hasattr(Class1, "Hello2"):
  print c1.Hello2()
else:
  print "Class1 does not contain method Hello2()"
# check inheritance
if issubclass(Class2, Class1):
  print "Class2 is a subclass of Class1, or Class2 has inherited Class1"
# you can access variable k contained in Class1
print "Variable k from Class1 =", c1.k
print '-'*20
# this would give an error! You cannot access a class private method
if hasattr(Class1, "__localHello()"):
  print c1.__localHello()
else:
  print "No access to Class1 private method __localHello()"

运行结果如下:

Help on class object in module __builtin__:

class object
 | The most base type

--------------------
Class1 says hello:
Hello from Class1!
--------------------
Class2 says a Class1 hello:
Hello from Class1!
--------------------
Class2 says its own hello:
Hello from Class2!
7 is my favorite number
--------------------
Class1 color via __init__():
I like the color blue
--------------------
Class2 color via inherited __init__() and printColor():
I like the color red
--------------------
Class1 changes its mind about the color:
I like the color yellow
--------------------
Wonder what Class2 has to say now:
I like the color red
--------------------
Class1 does not contain method Hello2()
Class2 is a subclass of Class1, or Class2 has inherited Class1
Variable k from Class1 = 7
--------------------
No access to Class1 private method __localHello()

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

Python 相关文章推荐
Python将多个excel表格合并为一个表格
Feb 22 Python
python画图系列之个性化显示x轴区段文字的实例
Dec 13 Python
python opencv摄像头的简单应用
Jun 06 Python
简单了解python gevent 协程使用及作用
Jul 22 Python
使用OpCode绕过Python沙箱的方法详解
Sep 03 Python
Pytorch修改ResNet模型全连接层进行直接训练实例
Sep 10 Python
Python3 元组tuple入门基础
Feb 09 Python
python中提高pip install速度
Feb 14 Python
在Python中用GDAL实现矢量对栅格的切割实例
Mar 11 Python
python 在sql语句中使用%s,%d,%f说明
Jun 06 Python
pytorch中的weight-initilzation用法
Jun 24 Python
Python unittest discover批量执行代码实例
Sep 08 Python
python显示生日是星期几的方法
May 27 #Python
python中zip和unzip数据的方法
May 27 #Python
Python pickle模块用法实例分析
May 27 #Python
Python创建模块及模块导入的方法
May 27 #Python
Python类的用法实例浅析
May 27 #Python
Python socket编程实例详解
May 27 #Python
Python简单删除目录下文件以及文件夹的方法
May 27 #Python
You might like
laravel5实现微信第三方登录功能
2018/12/06 PHP
IE6弹出“已终止操作”的解决办法
2010/11/27 Javascript
整理的比较全的event对像在ie与firefox浏览器中的区别
2013/11/25 Javascript
如何书写高质量jQuery代码(使用jquery性能问题)
2014/06/30 Javascript
JavaScript数据类型检测代码分享
2015/01/26 Javascript
基于jquery实现的自动补全功能
2015/03/12 Javascript
jQuery Html控件基本操作(日常收集整理)
2016/03/11 Javascript
jQuery Dialog 打开时自动聚焦的解决方法(两种方法)
2016/11/24 Javascript
Vue.js实战之Vuex的入门教程
2017/04/01 Javascript
JS写谷歌浏览器chrome的外挂实例
2018/01/11 Javascript
详解AngularJS之$window窗口对象
2018/01/17 Javascript
实战node静态文件服务器的示例代码
2018/03/08 Javascript
Angular异步变同步处理方法
2018/08/13 Javascript
JavaScript代理模式原理与用法实例详解
2020/03/10 Javascript
[01:31:02]TNC vs VG 2019国际邀请赛淘汰赛 胜者组赛BO3 第一场
2019/08/22 DOTA
python操作数据库之sqlite3打开数据库、删除、修改示例
2014/03/13 Python
浅析Python中signal包的使用
2015/11/13 Python
python监控进程脚本
2018/04/12 Python
Pandas之MultiIndex对象的示例详解
2019/06/25 Python
Python超越函数积分运算以及绘图实现代码
2019/11/20 Python
python中setuptools的作用是什么
2020/06/19 Python
python实现最短路径的实例方法
2020/07/19 Python
详解如何在PyCharm控制台中输出彩色文字和背景
2020/08/17 Python
爬虫代理的cookie如何生成运行
2020/09/22 Python
HTML5和CSS3让网页设计提升到下一个高度
2009/08/14 HTML / CSS
在校生钳工实习自我鉴定
2013/09/19 职场文书
大二自我鉴定范文
2013/10/05 职场文书
2014国培学习感言
2014/03/05 职场文书
会计核算科岗位职责
2014/03/19 职场文书
公司联欢晚会主持词
2014/03/22 职场文书
学校三节实施方案
2014/06/09 职场文书
关爱残疾人标语
2014/06/25 职场文书
教师民族团结演讲稿
2014/08/27 职场文书
员工年终自我评价
2014/09/14 职场文书
国庆横幅标语
2014/10/08 职场文书
Win10 Anaconda安装python-pcl
2022/04/29 Servers