this
示例:
@Stateless public class ExampleBean { private AnotherBean anotherBean; public ExampleBean setAnotherBean(AnotherBean anotherBean) { this.anotherBean = anotherBean; return this; // 错误:不应在此处返回 `this` } }