📄 stacktest2.java
字号:
import java.util.*;public class StackTest2 { public static void main(String[] args) { Stack2<String> s = new Stack2<String>(); s.push("hi"); s.push("hello"); s.push("good day"); Stack2<String> s2 = s.clone(); System.out.format("%s%n", s.pop()); System.out.format("%s%n", s.pop()); System.out.format("%s%n", s.pop()); System.out.format("%s%n", s2.pop()); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -