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

前端 未结 27 959
抹茶落季
抹茶落季 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:00

    Bad habit: a setter set a getter get

    what about explicitly declaring a method, that does it for U

    setPropertyFromParams(array $hashParamList) { ... }
    

提交回复
热议问题