Search:

Type: Posts; User: copeg

Search: Search took 0.10 seconds.

  1. Thread: Infix to Prefix

    by copeg
    Replies
    8
    Views
    5,717

    Re: Infix to Prefix

    It can, but like Junky and I said the java.util.Stack class does not contain this method ( Stack (Java Platform SE 6) ), and this is where the exception is being thrown - from a call to pop on a...
  2. Thread: Infix to Prefix

    by copeg
    Replies
    8
    Views
    5,717

    Re: Infix to Prefix

    The exception provides a lot of information - you are trying to pop a stack that is empty.

    The Stack class does not contain an isFull method, and implementing one would not solve your problem. A...
Results 1 to 2 of 2