クラス階層にいくつかの追加レイヤーを追加するまで、私はいくつかのクラスにユーザーJavaジェネリックスとすべてがうまくいきました。Java genericsと "Bound mismatch"
問題が「タイプ消去」に関連しているのだろうと思っていますが、これを排除するために継承を表現する方法がわかりません。
クラス定義:
public interface IBaseDAO <T, PK extends Serializable>;
public interface IEntityDAO<T extends BaseEntity> extends IBaseDAO<T, Integer>;
public interface IBaseFileDAO<T extends File> extends IEntityDAO<T>;
public interface IInvoiceDAO extends IBaseFileDAO<Invoice>;
public class BaseDAO<T, PK extends Serializable> implements IBaseDAO<T, PK>;
public abstract class EntityDAO<T extends BaseEntity> extends BaseDAO<T, Integer> implements IEntityDAO<T>;
public abstract class BaseFileDAO<T extends File> extends EntityDAO<T> implements IBaseFileDAO<T>;
public class InvoiceDAO extends BaseFileDAO<Invoice> implements IInvoiceDAO;
public abstract class BaseEntity implements Serializable;
public class File extends BaseEntity;
public abstract class Transaction extends File;
public class Request extends Transaction;
public class Invoice extends Request;
エラーは以下のとおりです。
Bound mismatch: The type Invoice is not a valid substitute for the bounded parameter <T extends File> of the type BaseFileDAO<T>
Bound mismatch: The type Invoice is not a valid substitute for the bounded parameter <T extends File> of the type IBaseFileDAO<T>
私は誰もが私に排除するためにInvoiceクラスを表現する方法についていくつかのアドバイスを与えることができ、ここで少し私の深さの外にしていますエラー?
はEDITは:このことができますが、私も持っている場合
わからない:私はあなたがアップあなたの質問を台無しにしたと思う
public class FileDAO extends BaseFileDAO<File> implements IFileDAO;
public interface IFileDAO extends IBaseFileDAO<File>;
この問題が発生するには、13個のクラス/インターフェイスが必要です。最小限の例を作って読みやすいようにしてください。 –
'java.io.File'と競合していませんか? –
これは 'IEntityDAO'と 'EntityDAO 'でなければなりません。 –
gigadot