Can I have an abstract builder class in java with method chaining without doing unsafe operations?

后端 未结 3 2058
一个人的身影
一个人的身影 2021-01-31 18:08

I\'m trying to have an abstract base class for some builder classes so I can easily reuse code between the Builder implementations. I want my builders to support method chaining

3条回答
  •  既然无缘
    2021-01-31 18:39

    You want to declare T as extends AbstractBuilder in AbstractBuilder.

    Use an abstract protected method to get this of type T.

    abstract class AbstractBuilder> {
        protected abstract T getThis();
    
        public T foo() {
            // set some property
            return getThis();
        }
    }
    
    
    class TheBuilder extends AbstractBuilder {
        @Override protected TheBuilder getThis() {
            return this;
        }
        ...
    }
    

    Alternatively, drop the generic type parameter, rely on covariant return types and make the code cleaner for clients (although usually they would be using TheBuilder rather than the largely implementation detail of the base class), if making the implementation more verbose.

提交回复
热议问题