麦子学院——Python面向对象编程(P6让对象具有能动性)

P6让对象具有能动性

题目:修改P5中定义的类Box,要求其具有:访问私有属性(体积)的方法;添加颜色属性(__color)和设置与获取Box的颜色的方法;添加打开和关闭盒子(Box)的方法,并且限制Box打开(关闭)之后,再次调用打开(关闭)方法会给予提示:即不能重复打开与关闭,在主程序中实例化并进行测试。

答案:

class Box:  # Box类
    instanceNum = 0  # 实例数

    def __init__(self, length=0, width=0, height=0, color=None):
        self.length = length  # 长
        self.width = width    # 宽
        self.height = height  # 高
        self.__volume = self.length * self.height * self.width  # 体积
        Box.instanceNum += 1
        self.__color = color  #颜色
        self.__disclosure = False

    def get_volume(self):
        return self.__volume

    def get_color(self):
        return self.__color

    def set_color(self, color):
        self.__color=color

    def open(self):
        if self.__disclosure == False:
            self.__disclosure = True
            print("the box has been opened!")
        else:
            print("repeated opening unpermitted!")

    def close(self):
        if self.__disclosure == True:
            self.__disclosure = False
            print("the box has been closed!")
        else:
            print("repeated closing unpermitted!")

测试

if __name__ == '__main__':
    a = Box(1, 2, 3,"red")
    print(a.get_color())    # red
    a.set_color("black")
    print(a.get_color())    # black
    a.open()    #the box has been opened!
    a.open()    #repeated opening unpermitted!
    a.close()   #the box has been closed!
    a.close()   #repeated closeing unpermitted!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值