對於在使用地點附近定義的類,我得到「無法解析符號」錯誤。 我做了無效緩存並重新啓動了InteliJ幾次,但它沒有幫助。 還有什麼可能是錯的?InteliJ無法解析靠近它的名稱
class Vehicle(speed : Int){
val mph : Int = speed
def race() = println("Racing")
}
class Car(speed: Int) extends Vehicle(speed){
override val mph: Int=speed
override def race() = println("Racing Car")
}
class Bike(speed:Int) extends Vehicle(speed) {
override val mph:Int = speed
override def race() = println("Racing Bike")
}
object Test {
def main(args: Array[String]): Unit = {
println("Hello")
val x = Bike(4)
}
}
由於屏幕截圖中的代碼無法複製,您可以將代碼粘貼到問題中嗎? – ashawley