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.
このコードがコンパイルされることにとても驚いていますが、それはどういう意味ですか?
public interface IBar {} public interface IFoo implements IBar {}
implementインターフェイスは他のインターフェイスを使用できないため、コンパイルできませんが、次のことはできextendsます。
implement
extends
public interface IFoo extends IBar {}
あなたのコードはエラーにつながるはずです:
1084: 構文エラー: 実装の前に左中括弧が必要です。