码迷,mamicode.com
首页 > 编程语言 > 详细

python Class:面向对象高级编程

时间:2018-07-19 16:21:17      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:yellow   技术分享   isp   roc   rgb   ati   indent   col   vpd   

一、Class添加新方法: MethodType

  1. 外挂类


class Animal(object):
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def run(self):
        print 'Animal is run'

def set_color(self, color):
    self.color = color;
    print color


dog = Animal('Pity', 9)

cat = Animal('Miumiu', 9)


from types import MethodType
dog.set_color = MethodType(set_color, dog, Animal)

dog.set_color('yellow')

技术分享图片

print dog.color

技术分享图片

cat.set_color('white_yellow')

技术分享图片


由此可见,MethodType指定添加在dog对象中,而非Animal中


2.内嵌类

class Animal(object):
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def run(self):
        print 'Animal is run'

def set_color(self, color):
    self.color = color;
    print color


dog = Animal('Pity', 9)

cat = Animal('Miumiu', 9)


from types import MethodType
Animal.set_color = MethodType(set_color, None, Animal)


dog.set_color('yellow')

技术分享图片

cat.set_color('white_yellow')
技术分享图片


格式图:

技术分享图片




二、Class限制添加新元素:__slots__

  1. 普通的Class没有限制添加元素

#!/usr/bin/env python3
# -*- coding: utf-8 -*-


class Animal(object):
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def run(self):
        print 'Animal is run'


dog = Animal('Pity', 9)


dog.color = 'yellow'  #dog实体添加了新元素color
print dog.color

技术分享图片


2.限制添加新元素:__slots__

#!/usr/bin/env python3
# -*- coding: utf-8 -*-


class Animal(object):
    __slots__ = ('name', 'age')  #限制实体添加其他元素
    def __init__ (self, name, age):
        self.name = name
        self.age = age
    def run(self):
        print 'Animal is run'


dog = Animal('Pity', 9)
print dog.name

技术分享图片

dog.color = 'yellow'

技术分享图片


!!!但是!!!!!

对于继承Animal的子类来讲,这个方法无效,除非在子类中也添加__slots__

#!/usr/bin/env python3
# -*- coding: utf-8 -*-


class Animal(object):
    __slots__ = ('name', 'age')
    def __init__ (self, name, age):
        self.name = name
        self.age = age
    def run(self):
        print 'Animal is run'


class Cat(Animal):   #添加继承Animal的子类
    pass


cat = Cat('Miumiu', 9)
cat.color = 'white_yellow'
print cat.color

技术分享图片



python Class:面向对象高级编程

标签:yellow   技术分享   isp   roc   rgb   ati   indent   col   vpd   

原文地址:http://blog.51cto.com/13502993/2147241

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!