How Marker Interfaces are instruct to complete the desired
need ?
Answers were Sorted based on User's Feedback
Answer / sreedhar
marker interface is there no content of that,Marker
interfaces are Serializable, Clonable, SingleThreadModel,
Event listener. Marker Interfaces are implemented by the
classes or their super classes in order to add some
functionality.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ranjan
A Interface that have no member is known as marker or Tagged
interface.They are used to providde some essential
information to JVM sothat jvm may perform some useful operation.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is volatile data type?
What is type casting?
What is garbage collection? What is the process that is responsible for doing that in java?
What is the basic difference between string and stringbuffer object?
Hi Friends, can u give code to convert ArrayList to HashMap and HashMap to ArrayList.
what is a transient variable?
What is default specifier ??? Use of default specifier ???
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
what is business objects?
Can we override the private methods?
What is the return type of a program?s main() method?
Is arraylist sorted in java?