Interface ShortStack

All Superinterfaces:
Stack
All Known Subinterfaces:
MutableShortArray

public interface ShortStack extends Stack

Stack of short values.

Author:
Daniel Alievsky
  • Method Summary

    Modifier and Type
    Method
    Description
    short
    Removes the element at the top of this stack and returns its value, or throws EmptyStackException if the stack is empty.
    void
    pushShort(short value)
    Appends value element to the end of this stack.

    Methods inherited from interface net.algart.arrays.Stack

    length, popElement, pushElement
  • Method Details

    • popShort

      short popShort()
      Removes the element at the top of this stack and returns its value, or throws EmptyStackException if the stack is empty.

      It this object is an AlgART short array, implementing MutableShortArray interface, and it is not empty, the same action may be performed by the following code:

       short result = shortArray.getShort(shortArray.length()-1);
       shortArray.length(shortArray.length()-1);
       
      Returns:
      the element at the top of this stack (it is removed from the stack by this method).
      Throws:
      EmptyStackException - if this stack is empty.
    • pushShort

      void pushShort(short value)
      Appends value element to the end of this stack.

      It this object is an AlgART short array, implementing MutableShortArray interface, the same action may be performed by the following code:

       shortArray.length(shortArray.length()+1);
       shortArray.setShort(shortArray.length()-1, value);
       
      Parameters:
      value - to be added to the top of this stack.
      Throws:
      TooLargeArrayException - if the resulting stack length is too large for this type of stacks.