Search:

Type: Posts; User: cjavier

Search: Search took 0.17 seconds.

  1. Replies
    2
    Views
    1,936

    Re: Implementing Iterable?!! Unsolvable problem

    I love you
  2. Replies
    2
    Views
    1,936

    Implementing Iterable?!! Unsolvable problem

    So my teacher told us that we had to write a method called iterator() in a class called Dictionary. Dictionary has one private instance variable (and may only have that one instance variable) that...
  3. Replies
    1
    Views
    1,510

    New Programmer working with generics!

    Here is my interface:


    public interface BasicList<E>
    {
    public void add(E element);
    public E get(int index);
    public void add(int index, E element);
    public void clear();
    public...
Results 1 to 3 of 3