在 Python3.2 中,我可以这样做:
foo = Bar()
foo.setSomething(something1).setStatus('horizontal').setAttributes(attributes)
最终链条变得很长。我很想垂直链接。
foo = Bar()
foo.setSomething(something1)
.setStatus('vertical')
.setAttributes(attributes)
有没有办法做到这一点?
在 Python3.2 中,我可以这样做:
foo = Bar()
foo.setSomething(something1).setStatus('horizontal').setAttributes(attributes)
最终链条变得很长。我很想垂直链接。
foo = Bar()
foo.setSomething(something1)
.setStatus('vertical')
.setAttributes(attributes)
有没有办法做到这一点?
只需将您的表达式括在括号中:
foo = Bar()
(foo.setSomething(something1)
.setStatus('vertical')
.setAttributes(attributes))
谢谢@Krotton 的回答,它确实有效。还要感谢@sean 的链接。因此,使用垂直链接的正确方法是:
foo = Bar()
(foo.setSomething(something1)
.setStatus('vertical')
.setAttributes(attributes))
您也可以使用语法,如多行字符串,以允许垂直链接:
foo = Bar()
foo.setSomething(something1)\
.setStatus('vertical')\
.setAttributes(attributes)