Skip to content

Files

Latest commit

7a3764c · Jan 6, 2023

History

History
24 lines (22 loc) · 557 Bytes

Multi-thread-notes.md

File metadata and controls

24 lines (22 loc) · 557 Bytes

Multi-Threading Notes By SCJP/OCJP by Durga sir

Topics

  1. Introduction
  2. The ways to define a Thread
    1. By extending Thread class
    2. By implementing Runnable (I)
  3. Getting And Setting name of thread
  4. Thread Priorities
  5. The mehtod to prevent thread execution
    1. yield()
    2. join()
    3. sleep()
  6. Synchronization
  7. Inter Thread communication
    1. wait()
    2. notify()
    3. nofifyAll()
  8. DeadLock
  9. Deamon Thread
  10. Multithreading enhanement

1. Introduction