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

在使用Kotlin开发APP时监听Edittext的addTextChangedListener事件时kotlin.NotImplementedError: An operation is not implemented: not implemented 这个错误,究其原因是因为我们在生成代码时IDE会自动给添加这句话

TODO("not implemented") //To change body of created functions use File | Settings | File Templates.

而出错的原因也是因为这个,我们只需要将其注释掉或者删去即可


Kotlin官网说明



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