我有以下代码段(以下两行是全局):
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
?任何帮助,将不胜感激。