It is an empty interface (no field or methods). Examples of marker interface are Serializable, Clonnable and Remote interface.... 17 May Marker interface in Java | java | 0 It is an empty interface (no field or methods). Examples of marker interface are Serializable, Clonnable and Remote interface....
A functional interface is an interface that contains only one abstract method. They can have only one functionality to... 17 May Functional Interfaces In Java | java | 0 A functional interface is an interface that contains only one abstract method. They can have only one functionality to...
It is an inner class without a name and for which only a single object is created. An anonymous... 17 May Anonymous Inner Class in Java | java | 0 It is an inner class without a name and for which only a single object is created. An anonymous...
Local Inner Classes are the inner classes that are defined inside a block. Generally, this block is a method... 17 May Local Inner Class in Java | java | 0 Local Inner Classes are the inner classes that are defined inside a block. Generally, this block is a method...
Inner class means one class which is a member of another class. There are basically four types of inner... 17 May Inner class in java | java | 0 Inner class means one class which is a member of another class. There are basically four types of inner...
In Java, it is possible to define a class within another class, such classes are known as nested classes.... 17 May Nested Classes in Java | java | 0 In Java, it is possible to define a class within another class, such classes are known as nested classes....
We can declare interfaces as member of a class or another interface. Such an interface is called as member... 17 May Nested Interface in Java | java | 0 We can declare interfaces as member of a class or another interface. Such an interface is called as member...
There is a rule that every member of interface is only and only public whether you define or not.... 17 May Java Interface methods | java | 0 There is a rule that every member of interface is only and only public whether you define or not....
A comparator interface is used to order the objects of user-defined classes. A comparator object is capable of comparing... 17 May Comparator Interface in Java with Examples | java | 0 A comparator interface is used to order the objects of user-defined classes. A comparator object is capable of comparing...
Abstraction: Hiding the internal implementation of the feature and only showing the functionality to the users. i.e. what it... 17 May Difference between Abstract Class and Interface in Java | java, Uncategorized | 0 Abstraction: Hiding the internal implementation of the feature and only showing the functionality to the users. i.e. what it...