witoldsz
06/08/2017, 2:30 PMwith (x) {a() b() c()}
work? Do the a()
and b()
execute on the same instance of x
, or do the result of a()
can "update" the x
, so the following methods run on what a()
returned?thanksforallthefish
06/08/2017, 2:34 PMx.a(); x.b()
, so I guess it a()
is modifying x
, b()
will see the modified x
kevinmost
06/08/2017, 2:49 PMx.a().b().c()
.witoldsz
06/08/2017, 2:52 PM