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 のマーカー インターフェイスについて混乱しています。
マーカー インターフェイスにメソッドがない場合、どこから呼び出されるか教えてください。これも明示的に実装する必要がありますか。
他のインターフェースと同じです。
また、実行時にオブジェクトを型チェックするために使用されます。
例:
そして、どこか別の場所Runtimeで次のようなオブジェクトを実現します
Runtime
if (SomeObjImpMarkerInterface instanceof SomeMarkerInterface ) { // Hey this object is that type } else { // Not that type. }