Here in my class I have provided the serialVersionUID explicitly, but while using 'serialver' command in command prompt for this same class the UID is generated by the system as well.
Could anyone please throw some light over the understanding of use for explicit
and implicit SerialVersion UID?
class Emp implements Serializable {
private static final long serialversionUID =
1293488886969693L;
int age;
public Emp(int age)
{
this.age = age;
}
}