我将如何访问 Scala 中现有的变量数据。我举个例子:
类存储:有一个地图(和我使用的其他数据)
A类:
val storageManager = new storage();
storageManager.putValue("key","value");
println("A: " + storageManager.getValue("key"));
B类:
val storageManager2 = new storage();
println("B: " + storageManager2.getValue("key"));
结果是:
A: value
B: null
我想让 B 类也打印“值”,即使存储类中的内容对于所有访问它们的类都相同。
传递 storeManager 变量是唯一的方法吗?因为我希望避免这种情况