排序的计算图?
如何在 之上构建 SortedMap Guava 的计算地图(或反之亦然)?我想要排序的映射键以及动态计算值。
How can I construct a SortedMap on top of Guava's computing map (or vice versa)? I want the sorted map keys as well as computing values on-the-fly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的可能是使用 ConcurrentSkipListMap 和 memoizer 惯用法(请参阅 JCiP),而不是依赖于 MapMaker 中预先构建的未排序类型。您可以用作基础的示例是装饰器实现。
The simplest is probably to use a ConcurrentSkipListMap and the memoizer idiom (see JCiP), rather than relying on the pre-built unsorted types from MapMaker. An example that you could use as a basis is a decorator implementation.
也许你可以做这样的事情。这不是一个完整的实现。只是一个传达想法的示例。
May be you can do something like this.It's not a complete implementation.Just a sample to convey the idea.
如果您需要线程安全,这可能会很棘手,但如果您不需要,我会推荐一些接近 Emil 建议的方法,但使用
ForwardingSortedMap
而不是扩展TreeMap
直接地。If you need the thread safety, this could be tricky, but if you don't I'd recommend something close to Emil's suggestion, but using a
ForwardingSortedMap
rather than extendingTreeMap
directly.