是否有可能在新行中创建方法链,就像您在c#中可以做的那样?
var foo = bar
.MethodOne()
.MethodTwo()
空格在()中不重要,因此以下是合法的boo代码:
a = (bar
.Foo()
.Bar())
您应该使用" "符号。参见示例:
a = 123
.ToString()
.Length
print a