| Programming C# C++ (7) Delphi (618) Java (8) Applets (4) JavaScript (30) perl (9) php (4) VBScript (1) Visual Basic (1) |
Thread synchronization in Java
(2 votes). Leave comments and/ or rate it.
Threads run in the same memory space and it is important that a thread does not inadvertently overwrite another's data. To control threads access to common data, Java offers the synchronized statement.
Comments:
|