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

这个和Kotlin有关,最简单的解决办法就是 删除TODO(” “)

05-24 09:26:15.596 22824-22824/com.kotlin.usercenter E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.kotlin.usercenter, PID: 22824
    java.lang.IllegalStateException: Fatal Exception thrown on Scheduler.Worker thread.
        at rx.android.schedulers.LooperScheduler$ScheduledAction.run(LooperScheduler.java:114)
        at android.os.Handler.handleCallback(Handler.java:754)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:163)
        at android.app.ActivityThread.main(ActivityThread.java:6384)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:791)
     Caused by: rx.exceptions.OnCompletedFailedException: An operation is not implemented: not implemented
        at rx.observers.SafeSubscriber.onCompleted(SafeSubscriber.java:85)
        at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.checkTerminated(OperatorObserveOn.java:281)
        at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.call(OperatorObserveOn.java:216)
        at rx.android.schedulers.LooperScheduler$ScheduledAction.run(LooperScheduler.java:107)
        at android.os.Handler.handleCallback(Handler.java:754) 
        at android.os.Handler.dispatchMessage(Handler.java:95) 
        at android.os.Looper.loop(Looper.java:163) 
        at android.app.ActivityThread.main(ActivityThread.java:6384) 
        at java.lang.reflect.Method.invoke(Native Method) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:791) 
     Caused by: kotlin.NotImplementedError: An operation is not implemented: not implemented
        at com.kotlinmall.base.rx.BaseSubscriber.onCompleted(BaseSubscriber.kt:7)
        at rx.observers.SafeSubscriber.onCompleted(SafeSubscriber.java:79)
        at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.checkTerminated(OperatorObserveOn.java:281) 
        at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.call(OperatorObserveOn.java:216) 
        at rx.android.schedulers.LooperScheduler$ScheduledAction.run(LooperScheduler.java:107) 
        at android.os.Handler.handleCallback(Handler.java:754) 
        at android.os.Handler.dispatchMessage(Handler.java:95) 
        at android.os.Looper.loop(Looper.java:163) 
        at android.app.ActivityThread.main(ActivityThread.java:6384) 
        at java.lang.reflect.Method.invoke(Native Method) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:791) 

在Java中TODO会自动跳过运行,但是在Kotlin中就不会了。在官网我们可以看到如果TODO不删除或者注释掉就会抛出异常
kotlin.NotImplementedError: An operation is not implemented: not implemented_第1张图片
我们再来看看Kotlin中TODO的源代码,


/**
 * Always throws [NotImplementedError] stating that operation is not implemented.
 */

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

/**
 * Always throws [NotImplementedError] stating that operation is not implemented.
 *
 * @param reason a string explaining why the implementation is missing.
 */
@kotlin.internal.InlineOnly
public inline fun TODO(reason: String): Nothing = throw NotImplementedError("An operation is not implemented: $reason")

很明显,只要有这句话就会抛出异常,所以我们只要删除这句话就可以了

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