📄 sequence-sequence.html
字号:
<html><head><title>Code Fragment</title></head><body text=#000000><center></center><br><br><dl><dd><pre><font color=#ff0080>/** * An interface for a sequence, a data structure supporting all * operations of a deque, indexed list and position list. */</font><font color=#8000a0>public</font> <font color=#8000a0><font color=#ff8000>interface</font> </font>Sequence<E> <font color=#8000a0><font color=#ff8000>extends</font> </font>Deque<E>, IndexList<E>, PositionList<E> { <font color = #ff0080>/** Returns the position containing the element at the given index. */</font> <font color=#8000a0><font color=#8000a0>public</font> </font>Position<E> <font color=#0000ff>atIndex</font>(<font color=#8000a0>int</font> r) <font color=#8000a0><font color=#ff8000>throws</font> </font>BoundaryViolationException; <font color = #ff0080>/** Returns the index of the element stored at the given position. */</font> <font color=#8000a0><font color=#8000a0>public</font> </font><font color=#8000a0>int</font> <font color=#0000ff>indexOf</font>(Position<E> p) <font color=#8000a0><font color=#ff8000>throws</font> </font>InvalidPositionException;}</dl></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -