“Синхронизированная Ява” Ответ

Синхронизированная Ява

synchronized blocks the next thread's call to method 
 as long as the previous thread's execution is not finished. 
  Threads can access this method one at a time. 
  Without synchronized all threads can access this method simultaneously.
coder

Синхронизированный блок Java

public class MyCounter {

  private int count = 0;

  public synchronized void add(int value){
      this.count += value;
  }
}
Calm Cod

Синхронизированная Ява

The synchronized keyword is all about different threads reading and writing 
to the same variables, objects and resources.
coder

Ответы похожие на “Синхронизированная Ява”

Вопросы похожие на “Синхронизированная Ява”

Больше похожих ответов на “Синхронизированная Ява” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования