Marker interface

How JVM handles marker interface.Is there any marker thread inside the JVM?
[82 byte] By [m_k_ma] at [2007-11-27 4:59:09]
# 1
No. Why would marker interfaces be handled any differently.
YoGeea at 2007-7-12 10:15:20 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
then how implementing serializable interface it automatically write object on stream.
m_k_ma at 2007-7-12 10:15:20 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3
> then how implementing serializable interface it> automatically write object on stream.It doesn't.
YoGeea at 2007-7-12 10:15:20 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 4
Marker Interface gives some quality to a class.it is just meant to provide an extra feature for a class.for example if a class implements serializable then the objects of the class can be serialized.
santhoshreddythuragaa at 2007-7-12 10:15:20 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 5
It means if a class implements any marker interface then it treated differently by JVM. i.e. there is special instruction to JVM for marker interface.
m_k_ma at 2007-7-12 10:15:20 > top of Java-index,Java HotSpot Virtual Machine,Specifications...