摘要:
Set接口的常用方法 Set集合由Set接口和Set接口的实现类组成的。Set接口继承了Collection接口,因此包含Collection接口的所有方法。Set接口中的常用方法如下图: 由于Set集合中不允许存在重复值,因此可以使用Set集合中的addAll()方法,将Collection集合添 阅读全文
摘要:
package org.hanqi.pn0120; public class Feiji { private String name; private String color; private double price; public String getName() { return name; 阅读全文