Search:

Type: Posts; User: b094mph

Search: Search took 0.07 seconds.

  1. Replies
    6
    Views
    1,248

    Re: missing something so simple....help!

    I re installed eclipse and jdk 1.7. it works now! thanks for all your help guys. I appreciated it!
  2. Replies
    6
    Views
    1,248

    Re: missing something so simple....help!

    how do i find out which version of JDK i am using? i just tried my code in netbeans IDE and it works. so there is something wrong with my version of eclipse or the jdk.
  3. Replies
    6
    Views
    1,248

    missing something so simple....help!

    i am trying to add nodes to a list (similiar to a linkedlist) but i keep getting errors at my add method and where i call the add method in my main.


    public class LLList<T> {


    private Node...
  4. Re: can't figure whats wrong with my add method?? help!

    I am basically trying to use my add method to add nodes together. ( similiar to a linked list) but i am not able to add my first node.. i get this error when i run the code. i am not very good at...
  5. Re: can't figure whats wrong with my add method?? help!

    and here is my Main: the line of code: list.add("bobby");

    is giving me an issue.



    public class LListTest {

    /**
    * @param args
  6. Re: can't figure whats wrong with my add method?? help!

    here is the interface "ListInterface" (no issues with this part of the code) I am giving it just in case you would like to run the program yourself.


    /** An interface for the ADT list.
    *...
  7. can't figure whats wrong with my add method?? help!

    I have a interface called "ListInterface", a class called "LList" and a main "LListTest"

    my an add method that is not running.


    public class LList<T> implements ListInterface<T> {

    private...
Results 1 to 7 of 7