ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
```java package ds; public interface Stack<T>extends Container { void push(T data); T pop(); T peek(); } ```