Skip to main content

Home/ Diigo In Education/ Contents contributed and discussions participated by acarraro

Contents contributed and discussions participated by acarraro

acarraro

Intrinsic Locks and Synchronization (The Java™ Tutorials > Essential Classes ... - 3 views

  • When a thread releases an intrinsic lock, a happens-before relationship is established between that action and any subsequent acquisition of the same lock.
    • acarraro
       
      Come un commit di una transazione
  • When a thread invokes a synchronized method, it automatically acquires the intrinsic lock for that method's object and releases it when the method returns. The lock release occurs even if the return was caused by an uncaught exception.
  • what happens when a static synchronized method is invoked
  • ...2 more annotations...
  • public void addName(String name) { synchronized(this) { lastName = name; nameCount++; } nameList.add(name); }
  • Allowing a thread to acquire the same lock more than once enables reentrant synchronization.
acarraro

Host to Host through a Router - Practical Networking .net - 7 views

    • acarraro
       
      Why shouldn't the router use some kind of Default Route in this case?
1 - 2 of 2
Showing 20 items per page