What is Null Interface? What are the important in Java?

Showing Answers 1 - 8 of 8 Answers

sudal2000

  • Jun 12th, 2006
 

hai,

I think, null interterface means which doesn't have any method that is called marker inferface such as Serializable,clonable,Remote.

if you want to say any comments from this answer, send to sudal2000@gmail.com

  Was this answer useful?  Yes

arjun

  • Oct 28th, 2006
 

null interface is the example of marker interface. Interface are diffrent types. that are mainly extend interface, markble interface and marker interface. diffrence of marker inteface and others are that marker interfaces has no methods..Example are;- serilizable-- for serialization. remote -- for remote method communicaton. your remote interface must extends this marker interface. when ur remote interface extends marker interface then it is called as extend interface.

  Was this answer useful?  Yes

srinivas

  • Dec 24th, 2006
 

Null interface is a markup interface

  Was this answer useful?  Yes

23kannan

  • May 8th, 2008
 

Null interfaces act as markers. They just tell the compiler that the objects of this class need to be treated differently. some marker interfaces are : Serializable, Remote, Cloneable

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions