in Technology by
What is marker interface in JAVA?

1 Answer

0 votes
by

An interface that does not contain methods, fields, and constants is known as marker interface. In other words, an empty interface is known as marker interface or tag interface. It delivers the run-time type information about an object. It is the reason that the JVM and compiler have additional information about an object. The Serializable and Cloneable interfaces are the example of marker interface. In short, it indicates a signal or command to the JVM.

The declaration of marker interface is the same as interface in Java but the interface must be empty. For example:

  1. public interface Serializable   
  2. {  
  3.   
  4. }  

There are the two alternatives of marker interface that produces the same result as the marker interface.

  • Internal Flags: It can be used in place of marker interface to indicate any specific operation.
  • Annotations: Since Java 5, marker interfaces are omitted. Instead of marker interface, Java 5 provides the annotations to achieve the same results. It allows flexible metadata capability. Therefore, by applying annotations to any class, we can perform specific action.

Related questions

0 votes
    What are the uses of Marker interface?...
asked Dec 21, 2020 in Technology by JackTerrance
0 votes
    What are the components of a marker interface? (a) Fields and methods (b) No fields, only methods (c) Fields, no ... JSP & API of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    Which of the following is not a marker interface? (a) Serializable (b) Cloneable (c) Remote (d) Reader This ... JSP & API of Java Select the correct answer from above options...
asked Feb 22, 2022 in Education by JackTerrance
0 votes
    What are the components of a marker interface? (a) Fields and methods (b) No fields, only methods ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    Which of the following is not a marker interface? (a) Serializable (b) Cloneable (c) Remote (d) ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    I'm using flutter_map package and I need to draw path between 2 marker. I know map_view package provided ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    See the picture below. In my application (with MapView) usage, I would like to use such default markers ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    It sounds so simple but I can't find any newbie tutorial: Could anybody give me a simple example ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    What is an interface in Java?...
asked Feb 9, 2023 in Technology by JackTerrance
0 votes
    What are the Serializable Interface in JAVA?...
asked Dec 21, 2020 in Technology by JackTerrance
0 votes
    What are Cloneable Interface in JAVA?...
asked Dec 21, 2020 in Technology by JackTerrance
0 votes
    Which version of java added Flushable interface? (a) java SE 7 (b) java SE 8 (c) java SE 6 (d) java ... Management, JSP & API of Java Select the correct answer from above options...
asked Feb 16, 2022 in Education by JackTerrance
0 votes
    Which of these interface is not a member of java.io package? (a) DataInput (b) ObjectInput (c) ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 25, 2021 in Education by JackTerrance
0 votes
    Which of the interface contains all the methods used for handling thread related operations in Java? (a) ... questions and answers pdf, java interview questions for beginners...
asked Oct 25, 2021 in Education by JackTerrance
0 votes
    Which version of java added Flushable interface? (a) java SE 7 (b) java SE 8 (c) java SE 6 ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
...