python: 如果一个方法 return 只是引发错误,它有什么作用?
python: what does a method return if what it does is just raise error?
以下代码片段来自 python 食谱,第 3 版。 Chapter 8.21:
class NodeVisitor:
def visit(self, node):
methname = 'visit_' + type(node).__name__
meth = getattr(self, methname, None)
if meth is None:
meth = self.generic_visit # this is the line that I have problem with
return meth(node)
def generic_visit(self, node):
raise RuntimeError('No {} method'.format('visit_' + type(node).__name__))
当我在代码中评论时,我对这一行有两个问题:
meth = self.generic_visit # this is the line that I have problem with
- 为什么 self.generic_visit 是无参数的?
- 更重要的是,generic_visit 除了引发 RuntimeError 什么也没做,它怎么会返回一些东西并分配给“meth”?
meth = self.generic_visit
使 meth
引用 方法 self.generic_visit
本身 。它 而不是 引用它的 return 值;这将通过为某些 x
.
调用 meth(x)
来获得
以下代码片段来自 python 食谱,第 3 版。 Chapter 8.21:
class NodeVisitor:
def visit(self, node):
methname = 'visit_' + type(node).__name__
meth = getattr(self, methname, None)
if meth is None:
meth = self.generic_visit # this is the line that I have problem with
return meth(node)
def generic_visit(self, node):
raise RuntimeError('No {} method'.format('visit_' + type(node).__name__))
当我在代码中评论时,我对这一行有两个问题:
meth = self.generic_visit # this is the line that I have problem with
- 为什么 self.generic_visit 是无参数的?
- 更重要的是,generic_visit 除了引发 RuntimeError 什么也没做,它怎么会返回一些东西并分配给“meth”?
meth = self.generic_visit
使 meth
引用 方法 self.generic_visit
本身 。它 而不是 引用它的 return 值;这将通过为某些 x
.
meth(x)
来获得