A.def instance_method(self):passB.def instance_method():passC.def instance_method(self,param):passD.def instance_method(param):passE.def instance_method(param)pass
多项选择题在面向对象编程中,哪些是类的公共属性?()
A.nameB.ageC.run()D.eat()E.height
多项选择题面向对象编程中,哪些是类的私有方法?()
A.__nameB.__ageC.__run()D.__eat()E.__height
多项选择题在面向对象编程中,哪些是类的私有属性?()
多项选择题面向对象编程中,哪些是类的类方法?()
A.@staticmethodB.@classmethodC.def method()D.class methodE.static method
多项选择题面向对象编程中,哪些是类的实例方法?()
A.__str__B.__init__C.__new__D.__del__E.__eq__