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

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

    From the statement

    list.add(new Employee().setName("Jack Sparrow").setId(1).setFoo("bacon!"));
    

    i am seeing two things

    1) Meaningless statement. 2) Lack of readability.

提交回复
热议问题