I am using the serialized classes in java and in those classes I need to specify the serialVersionUID with some long number to be initialized. As a default it takes as
private static final long serialVersionUID = 1L;
Or else I can initialize the same with some other long number too, like as bellow:
private static final long serialVersionUID = 5561040348988016571L;
some very big number.
My question is: Does it really matter which value we initialize to serialVersionUID or not?