Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
此行来自 Arnold、Gosling 和 Holmes 的“Java 编程语言”:
interface SortedCharSeqCollection<E extends Comparable<E> & CharSequence> { ... }
" &"的意思是"and also",所以在这个例子中,集合可以包含 Strings,它实现了这两个接口。 我不确定为什么不使用逗号,并且很想从你们那里理解它。
我认为这是因为&比使用逗号更具逻辑意义。
这个符号已经是二进制的逻辑和运算,所以在这里使用它也很有意义。