python3 组合的个人理解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 组合的个人理解相关的知识,希望对你有一定的参考价值。

python的组合在我看来和函数的嵌套差不多,也不知道这样理解对还是不对,不对的希望各位大神帮我指正一下,谢谢了!

类的组合的主要作用是封装前一个类的作用,其他的和函数的套用差不多!我是按照我的例子来理解的!!!

class Wear:
    def __init__(self,hat,clothes,trousers,shos):
        self.hat=hat
        self.clothes=clothes
        self.trousers=trousers
        self.shos=shos

    def wear(self):
        return ("喜欢 白%s帽子 黑%s衣服 红%s裤子 蓝%s鞋子"%(self.hat,self.clothes,self.trousers,self.shos))

class person:
    def __init__(self,name):
        self.name=name
    def show(self,hat,clothes,trousers,shos):
        s1=Wear(hat,clothes,trousers,shos)#我不知道你的类(或是你的函数是怎么样的,我就只知道我在我的类里面调用你的方法来解决我的问题!)
        print(self.name,s1.wear())

a=person('小明')
a.show('平底锅','T恤','牛仔裤','绣花鞋')


以上是关于python3 组合的个人理解的主要内容,如果未能解决你的问题,请参考以下文章

关于CSS的个人理解

学习笔记:python3,代码片段(2017)

scrapy主动退出爬虫的代码片段(python3)

个人对于python3继承的理解

scrapy按顺序启动多个爬虫代码片段(python3)

python3编码问题个人理解