The marker interface pattern is a design pattern in computer science, used with languages that provide run-time type information about objects. It provides a means to associate metadata with a class where the language does not have explicit support for such metadata.

To use this pattern, a class implements a marker interface[1] (also called tagging interface) which is an empty interface,[2] and methods that interact with instances of that class test for the existence of the interface. Whereas a typical interface specifies functionality (in the form of method declarations) that an implementing class must support, a marker interface need not do so. The mere presence of such an interface indicates specific behavior on the part of the implementing class. Hybrid interfaces, which both act as markers and specify required methods, are possible but may prove confusing if improperly used.

Example

edit

An example of the application of marker interfaces from the Java programming language is the Serializable interface:

package java.io;

public interface Serializable {
}

A class implements this interface to indicate that its non-transient data members can be written to an ObjectOutputStream. The ObjectOutputStream private method writeObject0(Object,boolean) contains a series of instanceof tests to determine writeability, one of which looks for the Serializable interface. If any of these tests fails, the method throws a NotSerializableException.

Critique

edit

One problem with marker interfaces is that, since an interface defines a contract for implementing classes, and that contract is inherited by all subclasses, a marker cannot be "unimplemented". In the example given, any subclass not intended for serialization (perhaps it depends on transient state), must explicitly throw NotSerializableException exceptions (per ObjectOutputStream docs).

Another solution is for the language to support metadata directly:

  • Both the .NET Framework and Java (as of Java 5 (1.5)) provide support for such metadata. In .NET, they are called "custom attributes", in Java they are called "annotations". Despite the different name, they are conceptually the same thing. They can be defined on classes, member variables, methods, and method parameters and may be accessed using reflection. C++26 adds similar support for annotations to C++.
  • In Python, the term "marker interface" is common in Zope and Plone. Interfaces are declared as metadata and subclasses can use implementsOnly to declare they do not implement everything from their super classes.

See also

edit

References

edit
  1. ^ Bloch, Joshua (2008). "Item 37: Use marker interfaces to define types". Effective Java (Second ed.). Addison-Wesley. p. 179. ISBN 978-0-321-35668-0.
  2. ^ "Marker interface in Java". GeeksforGeeks. 2017-03-06. Retrieved 2022-05-01.

Further reading

edit

Effective Java[1] by Joshua Bloch.

  1. ^ Bloch, Joshua (2018). Effective Java (Third ed.). Boston. ISBN 978-0-13-468599-1. OCLC 1018432176.{{cite book}}: CS1 maint: location missing publisher (link)

📚 Artikel Terkait di Wikipedia

Design marker

engineering, a design marker is a technique of documenting design choices in source code using the Marker Interface pattern. Marker interfaces have traditionally

Interface (computing)

Serializable interface. This is a marker interface and does not have any methods. Gamma; Helm; Johnson; Vlissides (1995). Design Patterns: Elements of

Structural pattern

Flyweight pattern A large quantity of objects share a common properties object to save space. Marker interface pattern An empty interface to associate

Mixin

features, such as C# or Java. Additionally, through the use of the marker interface pattern, generic programming, and extension methods, C# 3.0 has the ability

Software design pattern

the use of existing design patterns as well as domain-specific design patterns. Examples include user interface design patterns, information visualization

Constant interface

the constant interface pattern describes the use of an interface solely to define constants, and having classes implement that interface in order to achieve

User interface design

User interface (UI) design or user interface engineering is the design of user interfaces for machines and software, such as computers, home appliances

Design pattern

Jenifer; Brewer, Charles; Valencia, Aynne (2020) [2005]. Designing Interfaces: Patterns For Effective Interaction Design (3rd ed.). Sebastopol, CA: O'Reilly