标签: dsl fluent method-chaining
是否有任何方法,给出如下语句
First().Second();
从First()内知道是否/ Second()已执行?
First()
Second()
参考:http://martinfowler.com/dslwip/MethodChaining.html
答案 0 :(得分:2)
Second()在First()完成之前不会执行,因此这是不可能的。 First()可以做的就是违反流利程度,从而使Second()无法运行。