kotlin.NotImplementedError: An operation is not implemented: not implemented

初次接触Kotlin,在很多方法的调用上不是很熟悉,该问题是一个很基本的问题,

产生原因:

1. TODO
方法声明:


@kotlin.internal.InlineOnly
public inline fun TODO(): Nothing = throw NotImplementedError()
方法使用:

fun test(){
    TODO("Not implemented")
}


方法说明:有点类似于java的//todo,但是不同的是,因为它的方法告诉我们,它会抛出一个异常,也就是上面这个方法会导致程序崩溃。它的好处是:配合IDE自动声明的TODO, 会强制开发者去实现这个TODO或者删除它。


我出该异常时的代码:在给EditText添加一个addTextChangedListener监听时,以为和平时写Java的时候,不用管TODO,也就没有注释掉,在Kotlin代码上,运行就出现了NotImplementedError异常.所以要解决这个问题,值需要删除掉TODO就可以了.


mEtContent.addTextChangedListener(object :TextWatcher{
            override fun afterTextChanged(s: Editable?) {
                TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
            }

            override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
                TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
            }

            override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
                TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
                mTvCount.text ="区"+ (count+start)+"/20"
            }
        })


kotlin TODO 官网描述地址:https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-t-o-d-o.html

Kotlin NotImplementedError 官网描述:https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-not-implemented-error/


你可能感兴趣的:(Android,Kotlin)