0
我有這個類擴展,超級構造函數和靜態方法
class Tester(round: Int, x: Int, y: Int,sparringPartners:Array[RobotSpecification]) {
def this(s:Array[RobotSpecification]) = {
this(5, 800, 600, s)
}
def getRandomRobot(eng: RobocodeEngine): Array[RobotSpecification] = {//blabla}
}
,我想擴大做這樣
class EasyTester() extends Tester(getRandomRobot()){}
東西顯然這是行不通的。
可能這個問題很瑣碎,但我最近剛剛接近Scala的OO部分,所以我從來沒有使用過這個東西。