Python面向对象程序设计示例小结

作者:lryong. 时间:2023-08-24 13:31:24 

本文实例讲述了Python面向对象程序设计。分享给大家供大家参考,具体如下:

示例1:


#encoding:utf-8
'''example 1
class test:
 def __init__(self,year,**arg):
   self.year = year
   self.args = arg
 def kaka(self):
   if isinstance(self.year,str):
     print 'input\'s year is a string! Error'
   elif isinstance(self.year,int):
     a = self.year%4
     print a
   else:
     print 'Error!'
 def deal_arg(self):
   # for v in self.args:
   #  print '\n====================\n',v
   for k in self.args:
     print str(k)+'\tvalue is '+str(self.args[k])
   print self.args
a = test(2014,a=123,b=321)
a.kaka()
a.deal_arg()

运行结果:

2
a value is 123
b value is 321
{'a': 123, 'b': 321}

示例2:


#encoding:utf-8
'''example 2'''
class test:
 '这是一个测试的基类'
 def __init__(self,test):
   self.test = test
 '这是一个测试的基类'
print 'test.__doc__:',test.__doc__
print 'test.__name__:',test.__name__
print 'test.__module__:',test.__main__
print 'test.__bases__:',test.__bases__
print 'test.__dict__:',test.__dict__

示例3:


'''example 3 Class inheritance and method partial rewriting'''
class parent:
 def __init__(self):
   print '这是一个父类'
 def ParentsMethond(self):
   print '这是一个父类方法'
 def Parenttest(self,arg):
   self.arg = 'This is a test!'
   print '父类的self变量: %s' %self.arg
   parent.arg = arg
   print '父类的变量: %s' %parent.arg
class child(parent):
 """docstring for child"""
 def __init__(self):
   print '这是一个子类'
 def ChildMethod(self):
   print '调用子类方法 child method'
 def ParentsMethond(self):
   print '父类方法重写!!!!!!!!!!!!!!!!!!!!'
b= parent()
c = child()
c.ChildMethod()
print '*'*10
b.ParentsMethond()
c.ParentsMethond()
print '*'*10
c.Parenttest(3899)

运行结果:

这是一个父类
这是一个子类
调用子类方法 child method
**********
这是一个父类方法
父类方法重写!!!!!!!!!!!!!!!!!!!!
**********
父类的self变量: This is  a test!
父类的变量: 3899

示例4:


'''example 4 Operator overloading'''
class test:
 def __init__(self,a,b):
   self.a = a
   self.b = b
 def __str__(self):
   return 'Vector (%d,%d)' % (self.a,self.b)
 def __add__(self,other):
   return test(self.a+other.a,self.b+other.b)
v1 = test(21,22)
v2 = test(2,3)
print v1 + v2

运行结果:

Vector (23,25)

示例5:


'''#example 5 private class'''
class JustCounter(object):
 """docstring for JustCounter"""
 __secretCount = 0 #私有变量
 publicCount = 0 #公开变量
 def count(self):
   self.__secretCount +=1
   self.publicCount +=1
   print self.__secretCount
counter = JustCounter()
counter.count()
counter.count()
counter.count()
counter.count()
counter.count()
print counter.publicCount
print counter.__secretCount #报错,实例不能访问私有变量
print counter._JustCounter__secreCount

感兴趣的朋友可以测试上述代码运行效果。

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

来源:https://blog.csdn.net/fengshenyue/article/details/54692623

标签:Python,面向对象
0
投稿

猜你喜欢

  • Django如何配置mysql数据库

    2024-01-18 03:27:30
  • sqlserver、Mysql、Oracle三种数据库的优缺点总结

    2024-01-22 10:33:56
  • 使用Python可设置抽奖者权重的抽奖脚本代码

    2023-08-27 09:17:19
  • Python自动化测试PO模型封装过程详解

    2023-08-23 18:59:49
  • Python堆排序原理与实现方法详解

    2021-02-22 15:07:31
  • 对pandas处理json数据的方法详解

    2023-09-02 22:32:22
  • 通过代码实例了解页面置换算法原理

    2024-01-24 21:26:23
  • Python sklearn CountVectorizer使用详解

    2023-06-20 08:19:05
  • python实现输入数字的连续加减方法

    2023-04-10 09:29:22
  • python将字母转化为数字实例方法

    2021-12-04 03:40:17
  • python人工智能使用RepVgg实现图像分类示例详解

    2021-04-15 21:36:42
  • 关于NumPy中asarray的用法及说明

    2023-01-07 17:55:12
  • 使用DW中遇到的常见问题详解

    2008-03-18 16:27:00
  • Python通过两个dataframe用for循环求笛卡尔积

    2023-11-02 04:32:24
  • js实现股票实时刷新数据案例

    2024-04-10 10:52:20
  • PyCharm2021最新激活码+激活码补丁(亲测最新版PyCharm2021.3激活成功)

    2022-09-18 05:22:03
  • matplotlib bar()实现多组数据并列柱状图通用简便创建方法

    2022-12-11 11:59:15
  • PyCharm代码回滚,恢复历史版本的解决方法

    2021-01-08 21:19:55
  • Python实现ATM系统

    2021-10-17 05:20:46
  • vue项目持久化存储数据的实现代码

    2024-04-27 15:59:48
  • asp之家 网络编程 m.aspxhome.com