OOP

作者: shuff1e | 来源:发表于2018-03-29 21:46 被阅读11次
[root@shuffle-dev py_test]$ vim sf_oop.py 
#!/usr/bin/env python                                                                                                                       
# -*- coding: utf-8 -*-

class Test(object):
    def __init__(self):
        print '生成Test'
    def prt(shuffle):
        print shuffle
        print shuffle.__class__
    def __del__(self):
        print self.__class__.__name__,'销毁'

t=Test()
t.prt()

t.name='shuffle'
print t.name
del t.name
setattr(t,'name','shuffle')
print t.name
print hasattr(t,'name')
print getattr(t,'name')

print "Test.__dict__",Test.__dict__
print " t.__dict__",t.__dict__

print Test.__doc__
print t.__doc__
print Test.__module__
print t.__module__

del t

class parent(object):
    def __init__(self):
        print '生成parent'

class subclass(Test,parent):
    def __init__(self):
        parent.__init__(self)
        super(subclass,self).__init__()
        pass
    print '---'
    Test.__init__(Test())
    print '---'                                                                                                                             
sub=subclass()

print '---Vector---'
class Vector(object):
    def __init__(self,x,y):
        self.x=x
        self.y=y
    def __str__(self):
        return 'Vector (%d, %d)' % (self.x,self.y)
    def __add__(self,other):
        return Vector(self.x+other.x,self.y+other.y)
    def __cmp__(self,other):
        return self.x**2+self.y**2-other.x**2-other.y**2

print Vector(1,2)+Vector(3,4)
print Vector(1,2)>Vector(3,4)  
[root@shuffle-dev py_test]$ ./sf_oop.py 
生成Test
<__main__.Test object at 0x2ac0ade09390>
<class '__main__.Test'>
shuffle
shuffle
True
shuffle
Test.__dict__ {'__module__': '__main__', '__del__': <function __del__ at 0x2ac0ade03c08>, 'prt': <function prt at 0x2ac0ade03b90>, '__dict__': <attribute '__dict__' of 'Test' objects>, '__weakref__': <attribute '__weakref__' of 'Test' objects>, '__doc__': None, '__init__': <function __init__ at 0x2ac0ade03b18>}
 t.__dict__ {'name': 'shuffle'}
None
None
__main__
__main__
Test 销毁
---
生成Test
生成Test
Test 销毁
---
生成parent
生成Test
---Vector---
Vector (4, 6)
False
subclass 销毁

相关文章

  • OOP

    oop_simplestclass.py oop_methond.py oop_init.py oop_objva...

  • 关于oop和aop

    oop oop(Object Oriented Programming)面向对象编程, oop的设计特征:封装, ...

  • 面向对象编程

    OOP 指什么?有哪些特性 OOP:OOP(Object-oriented programming, 面向对象编程...

  • 关于对象-原型

    1.OOP 指什么?有哪些特性 OOP:Object-oriented programming,缩写OOP,即面向...

  • Java面试总结

    1.什么是OOP、AOP OOP即面向对象编程OOP三大特征:封装、继承、多态OOP五大原则:单一职责原则 (Si...

  • OOP

    类定义 说明:init为构造函数,第一个参数为self为函数本身。类成员以双下划线开头,说明为private访问限...

  • OOP

    java in think 起因 自从买了Java in think 这本书,一直想认真仔细的品味下这本某种意义的...

  • oop

    面向对象基本操作:一:基本操作示例一: class Test_A(): #定义类名def A(self):...

  • OOP

  • OOP

    Great work! Let's review everything that we've learned ab...

网友评论

      本文标题:OOP

      本文链接:https://www.haomeiwen.com/subject/xvbvcftx.html