Inherit StackInt and StackString classes from MyStack class. Define push(), pop() and display() methods in each subclasses StackInt and StackString 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();
}
}