Is final a access modifier in java or a non access modifier ?
Is this setName() method of Thread class public final void setName(string name) really final ? If yes does it mean that once the thread name is changed then it cant be changed later because of final keyword..?
Or final is not a part of the method setName() ?
Plz guide me with the correct Answer..