Kotlin-超级主要建造者?

时间:2019-01-11 15:49:41

标签: kotlin

IntelliJ IDEA抱怨构造函数。

  

转换为主要构造函数

在这个示例中,人们将如何做呢?

class Turtle : ActorBeta {
constructor() : super()

override fun act(dt: Float) {
    super.act(dt)

    if(Gdx.input.isKeyPressed(Input.Keys.LEFT))
        this.moveBy(-1f, 0f)
    if(Gdx.input.isKeyPressed(Input.Keys.RIGHT))
        this.moveBy(1f, 0f)
    if(Gdx.input.isKeyPressed(Input.Keys.UP))
        this.moveBy(0f, 1f)
    if(Gdx.input.isKeyPressed(Input.Keys.DOWN))
        this.moveBy(0f, -1f)
    }
}

0 个答案:

没有答案