When using generics in the return type, I'm having trouble extending a parent class like following example.
As you know, without generics, the following example will be compiled normally, but it won't be type safe because it's type should be Object.
Is there any clear solution (or pattern, or advice, anything will be helpful!) that I can refer to?
class AbstractReader<T>{
public abstract T readNext();
}
class ByteArrayReader extends AbstractReader<byte[]>{
@Override
public byte[] readNext(){ /*...*/ }
}
class StringReader extends ByteArrayReader {
@Override
public String readNext() {
/* The return type is incompatible
with ByteArrayReader.readNext()! */
return new String(bytes);
}
}