2

在 Python3.2 中,我可以这样做:

foo = Bar()
foo.setSomething(something1).setStatus('horizontal').setAttributes(attributes)

最终链条变得很长。我很想垂直链接。

foo = Bar()
foo.setSomething(something1)
   .setStatus('vertical')
   .setAttributes(attributes)

有没有办法做到这一点?

4

2 回答 2

2

只需将您的表达式括在括号中:

foo = Bar()
(foo.setSomething(something1)
     .setStatus('vertical')
     .setAttributes(attributes))
于 2012-12-03T14:53:51.633 回答
2

谢谢@Krotton 的回答,它确实有效。还要感谢@sean 的链接。因此,使用垂直链接的正确方法是:

foo = Bar()
(foo.setSomething(something1)
     .setStatus('vertical')
     .setAttributes(attributes))

您也可以使用语法,如多行字符串,以允许垂直链接:

foo = Bar()
foo.setSomething(something1)\
   .setStatus('vertical')\
   .setAttributes(attributes)
于 2012-12-03T14:59:48.900 回答