Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this StreamTokenizer Iterator Adapter that is suppose to create a Tokenizer Iterator Index Builder then build the index from a STIA wrapped around a StreamTokenizer. I am having trouble implementing the hasNext and Next for my STIA, can anyone help me, here is my class:

public class StreamTokenizerIteratorAdapter implements Iterator<Token> {

 DefaultIndexImpl index;
 StreamTokenizer source;

 public StreamTokenizerIteratorAdapter(final StreamTokenizer source) {
  if (source == null)
   throw new IllegalArgumentException("source == null");



 }


 @Override
 public boolean hasNext() {

  return !index.isEmpty();
 }


 public Token next() {

  if(!index.isEmpty())
   return next();
  else
  return null;
 }


 @Override
 public void remove() {
  throw new UnsupportedOperationException();
 }
}

Should I be using the source element in the hasNext() and next()?

share|improve this question
Can you clarify what the class is meant to do? Is it supposed to be a proper Iterator for tokens taken from a StreamTokenizer? In the implementation you've included, the StreamTokenizer you pass in is never used, and index is always null. So, at this point using the Iterator would just throw a NullPointerException. If you instantiate index, hasNext() would always return false and next() would always return null. If you put something in index, next() recurses until index is empty then returns null. So, maybe knowing more about your intent, and knowing what DefaultIndexImpl looks like will help. – Rob Heiser Mar 26 '10 at 15:53
i revised my class below but still having problems with add() – Alpdog14 Mar 26 '10 at 17:31

1 Answer

up vote 0 down vote accepted

I have revised the class slightly but having trouble with the add method.

public class StreamTokenizerIteratorAdapter implements Iterator<Token> {

    StreamTokenizer s;

    public StreamTokenizerIteratorAdapter(final StreamTokenizer source) {
        if (source == null)
            throw new IllegalArgumentException("source == null");

        s = (StreamTokenizer) source;

    }


    @Override
    public boolean hasNext() {

        int temptoken;
        while ((temptoken = s.nextToken()) != StreamTokenizer.TT_EOF) {
            if (temptoken == StreamTokenizer.TT_WORD) {
                Token t = new DefaultToken(s.sval, s.lineno());
                s.add(t.getWord(),t.getLine()); //run-time error at add
            }
        }
    }


    public Token next() {

        return temptoken;
    }


    @Override
    public void remove() {
        throw new UnsupportedOperationException();
    }
}

The problem is that add method in add(t.getWord(), t.getLine()) is not being recognized by StreamTokenizer. How do I use the add method in a StreamTokenizer. Also is my next() correct?

share|improve this answer
Are you sure you aren't getting a compile-time error? StreamTokenizer doesn't have an add() method. Also, the compiler would give you an error on the hasNext() method since it never returns a boolean. – Rob Heiser Mar 26 '10 at 20:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.