If a class has synchronized methods, does its subclass also have the same synchronized methods, whether simply inherited or overriden by the subclass?
Specifically,
- the legacy - Vectorhas synchronized methods, and- Stackis a subclass of- Vector. Does- Stackalso have synchronized methods?
- the legacy - Hashtablehave synchronized methods, and- Propertiesis a subclass of- Hashtable. Does- Propertiesalso have synchronized methods?
Motivations of my questions are from What are the replacements for legacy collections `Stack` and `Properties`?
Thanks.
 
    