类 IntStack

java.lang.Object
com.intellij.util.containers.IntStack
所有已实现的接口:
Cloneable

public class IntStack extends Object implements Cloneable
  • 构造器详细资料

    • IntStack

      public IntStack(int initialCapacity)
    • IntStack

      public IntStack()
  • 方法详细资料

    • push

      public void push(int t)
    • peek

      public int peek()
    • pop

      public int pop()
    • get

      public int get(int i)
    • size

      public int size()
    • empty

      public boolean empty()
    • equals

      public boolean equals(Object o)
      覆盖:
      equals 在类中 Object
    • clear

      public void clear()
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object
    • clone

      public IntStack clone()
      覆盖:
      clone 在类中 Object