Which of the methods of java Vector class is synchronized.Since there is no explicit synchronized in javadoc.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
All methods of the Vector class that change the state of the vector are synchronized. |
|||||||||||
|
|
The explanation is in the last line of the class Javadoc:
|
|||
|
|
|
In the absence of explicit statements in the Javadoc, look at the source code. For instance, you can find them in the In fact, nearly all methods that access or update the state of the Vector synchronize at some point. However, the |
||||
|
|