非凡 发表于 2021-6-29 14:35:36

第46讲,描述符,动动手题

在对照答案的时候,第1题:的答案中import time

class Record:
    def __init__(self, initval=None, name=None):
      self.val = initval
      self.name = name
      self.filename = "record.txt"

    def __get__(self, instance, owner):
      with open(self.filename, 'a', encoding='utf-8') as f:
            f.write("%s 变量于北京时间 %s 被读取,%s = %s\n" % \
                  (self.name, time.ctime(), self.name, str(self.val)))
      return self.val

    def __set__(self, instance, value):
      filename = "%s_record.txt" % self.name       
      with open(self.filename, 'a', encoding='utf-8') as f:
            f.write("%s 变量于北京时间 %s 被修改, %s = %s\n" % \
                  (self.name, time.ctime(), self.name, str(value)))
      self.val = value

第16行代码: filename = "%s_record.txt" % self.name       

1、没看懂这段代码起到的作用。
2、题中这段代码执行下来后的结果是不是 filename = x_record.txt 或者 filename = y_record.txt
3、filename在这里是MyDes的类属性?还是实例属性?
4、后面代码又对这filename的调用吗?

5、我删掉这段代码执行,貌似也没出现什么不同的地方。。。。。为什么?

suchocolate 发表于 2021-6-29 15:09:40

第16行代码: filename = "%s_record.txt" % self.name         

1、没看懂这段代码起到的作用。# 是字符串格式化操作:https://www.runoob.com/python3/python3-string.html
2、题中这段代码执行下来后的结果是不是 filename = x_record.txt 或者 filename = y_record.txt   # 对
3、filename在这里是MyDes的类属性?还是实例属性?# 实例属性
4、后面代码又对这filename的调用吗?    # 很明显没有
5、我删掉这段代码执行,貌似也没出现什么不同的地方。。。。。为什么?# 因为filename没有被调用,文件命名还是用的实例属性。

非凡 发表于 2021-6-30 14:26:28

suchocolate 发表于 2021-6-29 15:09
第16行代码: filename = "%s_record.txt" % self.name         

1、没看懂这段代码起到的作用。# 是字 ...

1、filename是实例属性的话,那调用这个属性的方式是怎么调用?

suchocolate 发表于 2021-6-30 16:20:44

非凡 发表于 2021-6-30 14:26
1、filename是实例属性的话,那调用这个属性的方式是怎么调用?

class Record:
    def __init__(self):
      self.filename = "record.txt"


r = Record()
print(r.filename)

非凡 发表于 2021-6-30 21:15:33

suchocolate 发表于 2021-6-30 16:20


不是这个,这个我理解。
上面这代码中在方法里定义属性的时候没有带slef,是吧。
    def __set__(self, instance, value):
      filename = "%s_record.txt" % self.name   
那能是不是这个属性只能在__set__方法里面内容使用,在外,即便是在Record的类里都调用不了呢?

suchocolate 发表于 2021-6-30 21:25:41

非凡 发表于 2021-6-30 21:15
不是这个,这个我理解。
上面这代码中在方法里定义属性的时候没有带slef,是吧。



对的

非凡 发表于 2021-6-30 21:42:43

suchocolate 发表于 2021-6-30 21:25
对的

谢谢,你能给我解惑!{:5_106:}
页: [1]
查看完整版本: 第46讲,描述符,动动手题