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