如何在Scala中使用ConcurrentLinkedQueue?

val nodes = Array.fill[mutable.Buffer[Int]](numNodes){new ArrayBuffer[Int]() with mutable.SynchronizedBuffer[Int]}

def addMutualEdge(i: Int)(j: Int) {nodes(i) += j; nodes(j) += i}

当我编译它时,我得到弃用警告:

SynchronizedBuffer is deprecated. Synchronization via traits is deprecated as it is inherently reliable. Consider java.util.concurrent.ConcurrentLinkedQueue as an alternative

如何在上面的代码中使用java库?

解决方法

您可以使用ConcurrentLinkedQueue而不是Buffer,因为它也是可变的:

scala> import java.util.concurrent._
import java.util.concurrent._

scala> val nodes = Array.fill(10){new ConcurrentLinkedQueue[Int]()}
nodes: Array[java.util.concurrent.ConcurrentLinkedQueue[Int]] = Array([],[],[])

scala> def addMutualEdge(i: Int)(j: Int) {nodes(i).add(j); nodes(j).add(i)}
addMutualEdge: (i: Int)(j: Int)Unit

它是最快的选项,因为此队列基于CAS操作,因此没有阻塞(与SynchronizedBuffer相比).另一种选择是直接同步操作:

scala> val nodes = Array.fill[mutable.Buffer[Int]](10){new ArrayBuffer[Int]()}
nodes: Array[scala.collection.mutable.Buffer[Int]] = Array(ArrayBuffer(),ArrayBuffer(),ArrayBuffer())

scala> def addMutualEdge(i: Int)(j: Int) = this.synchronized{nodes(i) += j; nodes(j) += i}
addMutualEdge: (i: Int)(j: Int)scala.collection.mutable.Buffer[Int]

您还可以将java的Collections.synchronizedList(…)与scala.collection.JavaConverters.asScala结合使用

import java.util._
import scala.collection.JavaConverters._
scala> val nodes = Array.fill(10){Collections.synchronizedList(new ArrayBuffer[Int]().asJava).asScala}
nodes: Array[scala.collection.mutable.Buffer[Int]] = Array(Buffer(),Buffer(),Buffer())

或者您可以使用atomicreferenceArray:

implicit class RichAtomic[T](a: atomicreferenceArray[List[T]]) { def apply(i: Int) = (a,i); def update(i: Int,e: List[T]) = a.set(i,e)}
implicit class RichList[T](a: (atomicreferenceArray[List[T]],Int)) { def ::=(e: T) = while({val lst = a._1.get(a._2);!a._1.compareAndSet(a._2,lst,e :: lst)}){}}
implicit def toList[T](a: (atomicreferenceArray[List[T]],Int)) = a._1.get(a._2)

val nodes = new atomicreferenceArray(Array.fill[List[Int]](10){Nil})

scala> def addMutualEdge(i: Int)(j: Int) = {nodes(i) ::= j; nodes(j) ::= i}
addMutualEdge: (i: Int)(j: Int)Unit

Implicits用于提供simillar接口,就像Array一样.注意,:: =将元素添加到列表的开头.

相关文章

共收录Twitter的14款开源软件,第1页Twitter的Emoji表情 Tw...
Java和Scala中关于==的区别Java:==比较两个变量本身的值,即...
本篇内容主要讲解“Scala怎么使用”,感兴趣的朋友不妨来看看...
这篇文章主要介绍“Scala是一种什么语言”,在日常操作中,相...
这篇文章主要介绍“Scala Trait怎么使用”,在日常操作中,相...
这篇文章主要介绍“Scala类型检查与模式匹配怎么使用”,在日...