00:00
/* N26 - synchorization theory */
public class N56 {
}
/*
1. it is used for controlling the accessibility of the multiple thread
2. Definition - is the process by which we controll the accessibility of
multiple thread of a perticular resourse.
3. problem
a. data inconsistancey
b. thread interfeence
advantage
a. no data inconsistancy problem
b. no thread interference
disadvantage
a. increase the waiting time period of thread
b. create performace problem
for overcome the above issue java provide one package
java.util.concurrent
*/