草庐IT

collectItems

全部标签

java:返回一个集合

在Java中返回集合的最佳方式是什么?我应该允许调用者提供一个要添加到的集合吗?或者只返回List或Set项目?还是两者兼而有之?publicclassItem{...}publicclassSomeOtherClass{privateListmyItems;publicListgetItems(){returnCollections.unmodifiableList(this.myItems);}publicvoidcollectItems(Collectiontarget){target.addAll(myItems);}}注意:上面的例子假定了一个可以立即返回的列表的预先存在。当