public void writeToParcel(Parcel parcel, int flags) throws IOException {
doSomethingThatThrowsIOException();
}
Quoth编译器:
异常 IOException 与 Parcelable.writeToParcel(Parcel, int) 中的 throws 子句不兼容
Parcelable
我在文档或实际代码中的任何地方都没有看到 throws 子句。这是一个讨厌的线程问题吗?