在Python中访问另一个对象中的对象
先决条件: Python中的 OOP 基础知识
在本文中,我们将学习如何在Python中访问其他对象中的对象方法和属性。如果我们有两个不同的类,其中一个在调用构造函数时定义了另一个类。然后,第一类对象(即对象中的对象)可以访问另一个类的方法和属性。
在下面的示例中,我们学习访问对象内的对象(其方法和属性)。我们用适当的定义定义了两个类(第一类和第二类)。
- 第一类由构造函数和方法组成。
- 构造函数在第一类的属性中形成第二类的对象。
- 该方法定义了第一类方法中的存在。
- 同样,第二个类由构造函数和方法组成。
- 构造函数形成一个属性。
- 该方法定义了第二类方法中的存在。
由于第一类的属性作为第二类的对象工作,因此可以使用以下方法访问第二类的所有方法和属性:
object_of_first_class.attribute_of_first_class
下面是实现:
Python3
# python program to understand the
# accessing of objects within objects
# define class first
class first:
# constructor
def __init__(self):
# class second object
# is created
self.fst = second()
def first_method(self):
print("Inside first method")
# define class second
class second:
# constructor
def __init__(self):
self.snd = "GFG"
def second_method(self):
print("Inside second method")
# make object of first class
obj1 = first()
print(obj1)
# make object of second class
# with the help of first
obj2 = obj1.fst
print(obj2)
# access attributes and methods
# of second class
print(obj2.snd)
obj2.second_method()
# This code is contributed
# by Deepanshu Rustagi.
输出:
<__main__.first object at 0x7fde6c57b828>
<__main__.second object at 0x7fde6c57b898>
GFG
Inside second method