我有一个在单身实例中定义的集合,该集合不断被接收(数百万次)。
现在我正在通过单身人士向集合中添加值:
DataRepository.getInstance().addToCollection(collectionId, value);
(在添加集合方法中,我首先通过collectionId从hashmap加载集合,然后为其添加值)
如果我加载集合的实例并直接使用引用,我会获得任何性能提升吗?
像:
CustomCollection collection = DataRepository.getInstance().getCollection(collectionId);