Please review the code below:
public class ClassA implements Serializable{
...}
I implemented Serializable interface and wrote methods according to my requirement. I did not implement any method of Serializable interface. I know that when you implement an interface, you have to implement its methods. I can compile my class and no error are shown.
Is this some special behavior of interface?