本文介绍了Scala:为什么mapValues产生视图,有什么稳定的选择?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

刚才我惊讶地发现, c> mapValues 更有效。

I have not been able to find the original suggestion by jrudolph, but I assume it was done to make mapValues more efficient. Give the question, that may come as a surprise, but mapValues is more efficient if you are not likely to iterate over the values more than once.

作为一个解决方法,可以执行 mapValues(...)。view.force 来生成新的地图。

As a work-around, one can do mapValues(...).view.force to produce a new Map.

这篇关于Scala:为什么mapValues产生视图,有什么稳定的选择?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 14:15