push method instack using abstarct class code example
Example: stack class in java
import java.util.Stack;
class Main {
public static void main(String[] args) {
Stack<String> animals= new Stack<>();
// Add elements to Stack
animals.push("Dog");
animals.push("Horse");
// Remove element from Stack
animals.pop();
// Access element from top of Stack
animals.peek();
}
}