10 Eylül 2018 Pazartesi

SynchronizedSet Sınıfı

constructor
Collections.synchronizedSet() çağrısı ile yaratılır. Metodun içi şöyledir.
public static <T> Set<T> synchronizedSet(Set<T> s) {
  return new SynchronizedSet<>(s);
}

Hiç yorum yok:

Yorum Gönder