Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于Foo.a.b.c.d:
Foo.a.b.c.d
[:a,:b,:c,:d]
:d
不,可以找出谁调用了方法。但是一个方法不可能知道它的返回值会发生什么。
并进一步思考。有了这个
x = Foo.a.b.c x.d
链中的最后一个方法应该是什么?c因为它是最后一个链式方法,还是d因为它是对返回值的最后一次调用?
c
d