从已初始化为空对象的案例类中提取Map

时间:2017-09-05 19:07:32

标签: scala global-variables case-class

我有以下代码段(以下两行是全局):

case class FeatureGraph(h: mutable.HashMap[String, String])
private var latestNode = FeatureGraph

我们假设我有一个方法setLatestNode,将latestNode设置为相应的case class,其中map

现在,我想在另一种方法中访问latestNode。我们说它是performOperations。它如下:

def performOperations = Unit {
  val operation = latestNode.h //This line shoots an error (h not found)
}

有没有办法在这些情况下访问latestNode HashMap?任何帮助,将不胜感激。

0 个答案:

没有答案