本文主要是介绍Kotlin继承类实现抽象方法报错“kotlin.NotImplementedError: An operation is not implemented: not implemented”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
override fun initLayoutRes(): Int { // TODO("not implemented") //To change body of created functions use File | Settings | File Templates. return R.layout.activity_kotlin_test_layout }
删除掉默认实现即可。
kotlin中‘TODO’为默认实现,与'return 0'等同,如果自己实现需要删除默认的‘TODO’;
这篇关于Kotlin继承类实现抽象方法报错“kotlin.NotImplementedError: An operation is not implemented: not implemented”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!