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.
Java では、インターフェース内のすべてのメソッドが暗黙のうちに抽象的です。ただし、クラス内の少なくとも 1 つのメソッドが抽象である場合、それはこのクラスが抽象であることを意味します。それは、すべてのインターフェースが抽象クラスであることを意味しますか?
はい、インターフェイスを逆コンパイルすると、修飾子パブリック抽象インターフェイスがあり、定義により、抽象メソッドを含めるには抽象である必要があります。