📄 faststacktest.java
字号:
package com.thoughtworks.xstream.core.util;import junit.framework.TestCase;public class FastStackTest extends TestCase { public void test() { FastStack stack = new FastStack(2); stack.push("a"); stack.push("b"); stack.push("c"); stack.push("d"); assertEquals("d", stack.peek()); assertEquals("d", stack.peek()); assertEquals("d", stack.pop()); assertEquals("c", stack.pop()); stack.popSilently(); assertEquals("a", stack.peek()); assertEquals("a", stack.pop()); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -