为了账号安全,请及时绑定邮箱和手机立即绑定

参考答案代码如何创建实例

实例中无法传递类参数,会报错提示Animal类中不需要参数,但是后面调用的方法需要传递3个参数

正在回答

2 回答

class Animal(object):

    

    def __init(self,name,age,location):

        self.__name = name

        self.__age = age

        self.__location = location

        

    def set_name(self,name):

        self._name = name

    

    def get_name(self):

        return self._name

    

    def set_age(self,age):

        self._age= age

    

    def get_age(self):

        return self._age

        

    def set_location(self,location):

        self._location = location

    

    def get_location(self):

        return self._location



dog= Animal()


print(dog.__name)


0 回复 有任何疑惑可以回复我~

把你的代码贴出来看一下

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

参考答案代码如何创建实例

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信