我有以下代码出现问题,因为子对象在创建实例之前需要参数。我是否需要创建某种函数来处理子对象的创建?
我希望能够做到:
a = parent()
a.other('param').double(2)
2
a.other('param').other_class('another_param').square(4)
16
这是我的代码:
class parent(object):
def __init__(self):
self.other = other_class2(self)
self.answer = None
def multiply(self,x,y):
self.answer = x*y
return x*y
def add(self,x,y):
self.answer = x+y
return x+y
class other_class(object):
def __init__(self,parent,inputed_param):
self.parent = parent
self.input = inputed_param
def square(self,x):
self.answer = self.parent.parent.multiply(x,x)
return self.parent.parent.multiply(x,x)
class other_class2(object):
def __init__(self,parent,inputed_param):
self.parent = parent
self.other_class = other_class(self)
self.input = inputed_param
def double(self,x):
self.answer = self.parent.add(x,x)
return self.parent.add(x,x)
在我的实际代码中,我创建了一个python包装器来自动执行创建配置文件的网站内的任务,在每个配置文件中是一些提取 STRONG>。我认为这种树结构将是管理所有相关例程的最佳方式。
我需要一个父类来维护网站的连接方面,我希望parent.profile(profile_id)
包含与每个个人资料相关的任务/例程。然后,我希望parent.profile(profile_id).extract(extract_id)
包含与每个提取相关的任务/例程。
答案 0 :(得分:1)
您可以在询问param
时构建课程。该代码应该实现您期望的行为。
class parent(object):
def __init__(self):
self.other = lambda param: other_class2(self,param)
self.answer = None
class other_class2(object):
def __init__(self,parent,inputed_param):
self.parent = parent
self.other_class = lambda param: other_class(self,param)
self.input = inputed_param