📄 set.java
字号:
// Introduced in Chapter 11/** A set of Objects. */public interface Set<E> { /** Add target to this Set. */ public void add(E target); /** Return true if this Set contains target. */ public boolean contains(E target); /** Remove target from this Set. */ public void remove(E target); /** Return the number of elements in this Set. */ public int size();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -