Is it bad practice to make a setter return “this”?

前端 未结 27 981
抹茶落季
抹茶落季 2020-11-27 09:39

Is it a good or bad idea to make setters in java return \"this\"?

public Employee setName(String name){
   this.name = name;
   return this;
}
27条回答
  •  借酒劲吻你
    2020-11-27 10:04

    This scheme (pun intended), called a 'fluent interface', is becoming quite popular now. It's acceptable, but it's not really my cup of tea.

提交回复
热议问题