I'm having trouble calling a non-static method from an another file. My main file is called jroff.java, and the other file (which has the two methods I need) is called linkedqueue.java
In linkedqueue.java I have the following code:
class linkedqueue <item_t> {
private class node{
item_t item;
node link;
}
private node front = null;
private node rear = null;
public boolean empty (){
return front == null;
}
public void insert (item_t any) {
node temp = new node();
temp.item = any;
temp.link = null;
if(rear == null) front = temp;
else rear.link = temp;
rear = temp;
}
public item_t remove (){
item_t value;
if (empty ()) throw new NoSuchElementException ();
value = front.item;
front = front.link;
if(front == null) return null;
else return value;
}
}
this is how i'm trying to run insert in my main file:
for (String word: words) linkedqueue.insert(word);
I got the file name thing right, but how exactly do I make an instance of something like this? Here is where I use insert:
String value;
while(value != null){
value = linkedqueue.remove().toString();
remove returns a item_t, and i want that in a string. the last node will have a value of null, thats when the loop should stop.
Thanks for the help.