Marker interface pattern
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
An example of the application of marker interfaces from the Java programming language is the package java.io;
public interface Serializable {
}
A class implements this interface to indicate that its non-transient data members can be written to an CritiqueOne 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 Another solution is for the language to support metadata directly:
See also
References
Further readingEffective Java[1] by Joshua Bloch.
|
Portal di Ensiklopedia Dunia