Quantcast
Channel: BlogoSfera » prior
Viewing all articles
Browse latest Browse all 11

What do I have to return? method insert

$
0
0

We seem to have a problem implementing the insert method that is given to us in the ListInterface. Can you help us with finding the right type to return? //Method in class list: public ListInterface insert(E d) { Node c = new Node(d, null, current); current.prior = c; return ????; } public interface ListInterface<E extends […]

The post What do I have to return? method insert appeared first on BlogoSfera.


Viewing all articles
Browse latest Browse all 11

Trending Articles