what is sychronization in java
Answers
Answered by
0
synchronization is the process in java
it is the capability to control multiple threads simultanesouly
when we have a share resource and multiple threads try to share it
problem of synchronisation occured
this can be resolved by giving synronized keyword with method
or block we can have synchronized method or block to control sharing of resources
it is the capability to control multiple threads simultanesouly
when we have a share resource and multiple threads try to share it
problem of synchronisation occured
this can be resolved by giving synronized keyword with method
or block we can have synchronized method or block to control sharing of resources
Similar questions