Python基础学习代码之面向对象编程

黄舟
发布: 2016-12-29 17:33:50
原创
1929人浏览过

class  AddrBookEntry(object):
    'address book entry class'
    def __init__(self,nm,ph):
        self.name = nm
        self.phone = ph
        print 'created instance for:',self.name
    def updatephone(self,newph):
        self.phone = newph
        print 'update phone for:',self.name
    def updatename(self,newname):
        self.name = newname
        print 'update phone for:',self.phone
john = AddrBookEntry('xiewenbin','13711710490')
print john.name
print john.phone
john.updatephone('18617311540')
john.updatename('xwb')
print john.phone
print john.name
class EmpAddrBookEntry(AddrBookEntry):
    'employee address book entry class'
    def __init__(self,nm,ph,id,em):
        AddrBookEntry.__init__(self,nm,ph)
        self.empid = id
        self.email = em
    def updateemail(self,newem):
        self.email = newem
        print 'update email address for:',self.name
jone = EmpAddrBookEntry('jone doe','408-555-1212',42,'543361609@qq.com')
print jone.name
print jone.phone
print jone.email
jone.updatephone('18617311541')
print jone.phone
jone.updateemail('186@qq.com')
print jone.email
class HotelRoomCalc(object):
    'hotel room rate calculator'
    def __init__(self,rt,sales=0.084,rm=0.1):
        '''hotelroot calc  default arguments:
        sales tax == 8.5%  and room tax == 10%'''
        self.salestax = sales
        self.roomtax = rm
        self.rootrate = rt
    def cacltotal(self,days=1):
        'calculator total;default to daily rate'
        daily = round((self.rootrate * (1 + self.roomtax + self.salestax)),2)
        return float(days) * daily
sfo = HotelRoomCalc(299)
print sfo.cacltotal(3)
class TestStaticMethod(object):
    @staticmethod
    def foo():
        print 'calling static method foo()'
class TestClassMethod(object):
    @classmethod
    def foo(cls):
        print 'calling class method foo()'
        print 'foo() is part of class:',cls.__name__
class C(object):
    foo = 100
print C.foo + 1
class Myclass(object):
    'myclass class definition'
    myversion = 19.0
    def showmyversion(self):
        print Myclass.myversion
mc = Myclass()
mc.showmyversion()
print dir(Myclass)
print Myclass.__dict__
"""
class InstCt(object):
    count = 0
    def __init__(self):
        InstCt.count += 1
    def __del__(self):
        InstCt.count -= 1
    def howmany(self):
        return InstCt.count
a = InstCt()
b = InstCt()"""
x = 3 + 0.14j
print x.__class__
print [type(getattr(x,i)) for i in ('conjugate','imag','real')]
class Foo(object):
    x = {2003:'poe2'}
foo = Foo()
print foo.x
foo.x[2004] = 'xie'
print foo.x
print Foo.x
del foo.x
print foo.x
print Foo.x
登录后复制

 以上就是python基础学习代码之面向对象编程的内容,更多相关内容请关注php中文网(www.php.cn)!

腾讯云AI代码助手
腾讯云AI代码助手

基于混元代码大模型的AI辅助编码工具

腾讯云AI代码助手 98
查看详情 腾讯云AI代码助手
相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号