简体   繁体   中英

JAVA : Bound mismatch: is not a valid substitute for the bounded parameter <E extends Comparable<E>>

i have the class BinaryTree:

    public class BinaryTree<E extends Comparable<E>> extends AbstractTree<E> {
        protected TreeNode<E> root;
        protected int size = 0;
        private final Comparator<? super E> comparator;

        /** Create a default binary tree */
        public BinaryTree() {
            comparator = null;
        }
/** Create a binary tree from an array of objects */
    public BinaryTree(E[] objects) {
        for (int i = 0; i < objects.length; i++)
            insert(objects[i]);
    }
    public BinaryTree(E[] objects, Comparator<E> c) {
        for (int i = 0; i < objects.length; i++)
            insert(objects[i]);
        }
    //some getters, setters, insert, search and etc...
}

Also i have MyQueue Class:

public class MyQueue<E> {
    private LinkedList<E> list = new LinkedList<E>();

    public void enqueue(E e) {
        list.addLast(e);
    }

    public E dequeue() {
        return list.removeFirst();
    }

    public int getSize() {
        return list.size();
    }

    public String toString() {
        return "Queue: " + list.toString();
    }
}

And finally i have the CreditCardTransaction class:

public class CreditCardTransaction {
    private int cardNumber;
    private String customerName;
    private int amount;

    public CreditCardTransaction(int cardNumber, String customerName, int amount) {
        this.cardNumber = cardNumber;
        this.customerName = customerName;
        this.amount = amount;
    }

    public int getCardNumber() {
        return cardNumber;
    }

    public void setCardNumber(int cardNumber) {
        this.cardNumber = cardNumber;
    }

    public String getCustomerName() {
        return customerName;
    }

    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }

    public int getAmount() {
        return amount;
    }

    public void setAmount(int amount) {
        this.amount = amount;
    }
}

In the main i wrote:

BinaryTree<MyQueue<CreditCardTransaction>> e = new BinaryTree<MyQueue<CreditCardTransaction>>();

i get the error:

Bound mismatch: The type MyQueue<CreditCardTransaction> is not a valid substitute for the bounded parameter <E extends Comparable<E>> of the type BinaryTree<E>

I try all kind of mix with the types and any time the eclipse gave me this error, any help please?

EDIT

I added to MyQueue

public class MyQueue<E> implements Comparable<E>{
@Override
    public int compareTo(E o) {
        // TODO Auto-generated method stub
        return 0;
    }
}

and in the main it still gave me the error:

Bound mismatch: The type MyQueue<CreditCardTransaction> is not a valid
substitute for the bounded parameter <E extends Comparable<E>> of the
type BinaryTree<E>

MyQueue does not implement Comparable , so it can't substitute the type parameter of BinaryTree .

You can either remove the extends Comparable<E> bound from BinaryTree if you don't need it, or change MyQueue to implement Comparable<MyQueue<E>> .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM