I want to know what is the need of placing a class inside interface and an interface inside class?
class A {
interface B {}
}
interface D {
class E {}
}
|
|
This i am copying and pasting from some link (i earlier did and sharing with you) May be that can help you a bit. 1)
In the above interface you are binding the Role type strongly to the employee interface(employee.Role). 2) With a static class inside an interface you have the possibility to shorten a common programming fragment: Checking if an object is an instance of an interface, and if so calling a method of this interface. Look at this example:
} Now instead of doing this:
} You can write:
|
|||
|
|
|
Organization. Specifying a class inside an interface ties that class directly to that interface - clients which use that interface will have access to that class and all the functionality that it provides. I've seen the pattern of a class inside an interface really only in Java 1.4 and lower to provide an enumerated type to go along with the interface - since the interface could only use the class, and the class can be protected, clients that use the interface could only accept the instances of the class defined in the interface as the enumerated values. That's just the only example I can come up with - I'm sure others exist, but it's rare that I see a class inside of an interface used. For the flipped case, it's still organization. Specifying an interface inside of a class signifies that only that class should use the interface. That other classes and interfaces can still use that interface, depending on its access level, is not the point - the organization documents the intent of the interface - to be used only in the class that contains it. If it is useful outside of that class, it should be moved appropriately to its own type. So, both of these uses are rare, but their use is primarily to organize the code and document its intent directly via Java syntax. |
|||||
|
|
|
If any class functionality is closely associate with any interface in that situation we declare a class inside an interface. Some time it is also useful to provide default implementation of abstract method inside interface. |
||||
|
|