Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: python 类继承对象
在 Python 2.7 中,有什么区别:
class MyClass(Object):
和
class MyClass:
对象做什么?
在Object这种情况下, 的基类MyClass,意味着它“继承” 的方法和变量,Object除非被覆盖。然而,继承自object会创建一个“新式类”,而不是一个“旧式类”。有关更多信息,请参阅jozzas 的评论
Object
MyClass
object
有关继承的信息,请参阅本教程。