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

为什么把def grade(self)上面的@property去掉,s.grade返回的就是这个:<bound method Student.grade of <__main__.Student object at 0x029770D0>>

class Student(object):

    def __init__(self, name, score):
        self.name = name
        self.__score = score

    @property
    def score(self):
        return self.__score

    @score.setter
    def score(self, score):
        if score < 0 or score > 100:
            raise ValueError('invalid score')
        self.__score = score
        
    #@property删掉了  
    def grade(self):
        if self.__score > 80:
            grade = 'A'
        elif self.__score < 60:
            grade = 'C'
        else:
            grade = 'B'
        return grade

s = Student('Bob', 59)
print s.grade

s.score = 60
print s.grade

s.score = 99
print s.grade



代码如上,我的IDE是PyCharm EDU显示结果是:


<bound method Student.grade of <__main__.Student object at 0x029770D0>>
<bound method Student.grade of <__main__.Student object at 0x029770D0>>
<bound method Student.grade of <__main__.Student object at 0x029770D0>>


正在回答

3 回答

语法规定啊。少了那个就不能直接调用名字,由get set方法演变来的。不想麻烦和复杂就加一个@Property属性,因为方法里面要加条件。不能直接s.name = 'who'赋值

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

按我的理解就是@property可以把方法的调用用函数表示出来,因为如果没有@property,s.grate 就是一个函数,你打印出来的就是这个函数调用时的地址,有了它,你用s.grate就相当于s.grate()

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

删掉后应该可以这样调用:print s.grade()而且grade()函数保持不变(按你写的来说)

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

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

为什么把def grade(self)上面的@property去掉,s.grade返回的就是这个:<bound method Student.grade of <__main__.Student object at 0x029770D0>>

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