内置函数对象()返回一个空对象。这个对象是所有类的基础。它保存默认的内置属性和方法。不可能向该对象添加新的属性或方法。
**o = object()** #where o is the object
object()
函数不接受任何参数。
object()
函数返回一个无特征的对象。这是所有阶层的基础。
object()
方法的示例object()
是如何工作的? test = object()
print(type(test))
print(dir(test))
输出:
test = object()
print(type(test))
print(dir(test))
# declaring the objects of class object
obj1 = object()
obj2 = object()
# checking for object equality
print ("Is obj1 equal to obj2 : " + str(obj1 == obj2))
# trying to add attribute to object
obj1.name = "GeeksforGeeks"
输出:
Is obj1 equal to obj2 : False