“synchronizowana Java” Kod odpowiedzi

synchronizowana Java

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

Zsynchronizowany blok Java

public class MyCounter {

  private int count = 0;

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

synchronizowana Java

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

Odpowiedzi podobne do “synchronizowana Java”

Pytania podobne do “synchronizowana Java”

Więcej pokrewnych odpowiedzi na “synchronizowana Java” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu