Maison  >  Questions et réponses  >  le corps du texte

python的类成员是个dict,应该如何更新?

伊谢尔伦伊谢尔伦2765 Il y a quelques jours390

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-04-17 15:41:56

    不了解你的需求,既然是类成员变量,又要和实例绑定?
    类变量是所有实例共享的,实例变量才属于实例

    class T:
        def __init__(self):
            self.d = {}
        
    if __name__ == "__main__":
        
        t1 = T()
        t2 = T()
        t1.d["a"] = 1
        t2.d["b"] = 2
        print t1.d
        print t2.d

    répondre
    0
  • Annulerrépondre