class Student: name="xxx" @staticmethod def show(): name="yyy" print(name, Student.name) @classmethod def display(cls): cls.show() s=Student() s.display() 结果
class Student: name="xxx" @staticmethod def show(): name="yyy" print(name, Student.name) @classmethod def display(cls): cls.show() s=Student() s.display() 结果
发布时间:2025-12-10 22:15:27