Link to home
Start Free TrialLog in
Avatar of ngijane
ngijane

asked on

Flag Interface?

hi
  I heard about Flag interfaces ,which does not have any methods in them.What is their significane.

Thanks in advance
ngijane
 
Avatar of sgoms
sgoms

There are a few interfaces called as Marker Interfaces(FlagInterfaces) which do not have any methods in them.

Serializable is one such interface. what it does is instructs teh compiler & then teh run time environment to perform a certain operation. In case of serializable all the vraiables , objects are serialized(convereted to bytes) & can be used by ObjectInout/output streams for their purposes.

Remote is another marker interface in the java.rmi package which qualifies the interface as a remote object.

-sgoms
ASKER CERTIFIED SOLUTION
Avatar of Ravindra76
Ravindra76

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ngijane

ASKER

hi
 ravindra
          Thanks for the info..I got it ngijane.