Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ClassLoader是一个抽象类,即使它没有任何抽象方法。为什么呢?是否还有其他没有抽象方法的抽象类?
ClassLoader
具有抽象方法的类必须是抽象的。但是,抽象类不一定要有抽象方法。
一般来说,当一个类的实例在概念上没有意义时,它就应该是抽象的。实现不完整就是一个例子(它恰好是由编译器强制执行的),但这不是唯一的例子。