Issue
In many cases, there are two implementation choices: a closure and a callable class. For example,
class F:
def __init__(self, op):
self.op = op
def __call__(self, arg1, arg2):
if (self.op == 'mult'):
return arg1 * arg2
if (self.op == 'add'):
return arg1 + arg2
raise InvalidOp(op)
f = F('add')
or
def F(op):
if op == 'or':
def f_(arg1, arg2):
return arg1 | arg2
return f_
if op == 'and':
def g_(arg1, arg2):
return arg1 & arg2
return g_
raise InvalidOp(op)
f = F('add')
What factors should one consider in making the choice, in either direction?
I can think of two:
It seems a closure would always have better performance (can't think of a counterexample).
I think there are cases when a closure cannot do the job (e.g., if its state changes over time).
Am I correct in these? What else could be added?
Solution
Closures are faster. Classes are more flexible (i.e. more methods available than just __call__).
Answered By - Raymond Hettinger
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.