-1
我有以下斯卡拉類:斯卡拉不能訪問現場
class Component(val node:Int, var start:Int, var c_size:Int)
我實例是這樣的:
var comp = new Component(1, 1, 1)
然後,我嘗試訪問它的領域之一:
for(neighbour <- graph[comp.node]) ...
但是,此時出現錯誤:
error: type node is not a member of Component
爲什麼字段不被識別?
你可以發表聲明或類型的'graph'嗎? – Gonfva
嘗試使用圖形(comp.node)。 – Nyavro
@Nyavro就是這樣。 – octavian