Breaking News

Main Menu

Learn Java In Hindi Pdf

воскресенье 05 апреля admin 84
Learn Java In Hindi Pdf Rating: 8,5/10 7224 votes

दोस्तों आज हम इस पोस्ट मे देखेंगे Java in hindi. Java एक general purpose object oriented programming language है। sun Micro-systems ने java 1991 में U.S. में बनायीं थी। Sun Microsystems के एक Developer James Gosling ने किया था। उन्हें इसका.

डाउनलोड पी.डी.एफ. ई-बुक्स

Introduction for Multithreading

एक साथ अनेक threads या sub-programs को run किया जाना Multithreading होता है

Java में Multithreading का program एक साथ एक से ज्यादा threads को run करता है ये thread बहुत ही light-weight की process होती है

अगर Multithreading का उदाहरण ले तो जब MS Word में कोई data लिखते वक्त spell checks होता है, ये process MS Word के background पर होता है

Thread क्या है ?

  • thread ये एक process का sub-process है
  • thread light-weight होते है
  • program में एक या एक से ज्यादा threads create किये जा सकते है
  • जब process पर कोई thread create नहीं किया जाता तो main thread create होता है
  • thread; process की common memory area को share करता है thread अलग से memory को allocate नहीं करता

Life Cycle for Thread

threads का एक Life Cycle है threads अलग-अलग पड़ावों से गुजरता है

  1. New State
  2. Runnable State
  3. Running State
  4. Waiting State
  5. Dead State

New State : यहाँ से thread की शुरुआत होती है यहाँ पर thread का objet create किया जाता है

Ready/Runnable State : जब start() method को call किया जाता है, तब thread New से Runnable State पर आ जाता है ये execute होने के लिए Ready होता है

Running State : जब thread execution होना शुरू होता है, तब thread इस state पर होता है Groove agent 4 crack.

Waiting State : दुसरे thread को perform करने के लिए कुछ thread को block या waiting state पर होते है, waiting state पर जो thread होता है उसे resume किया जाता है

Civilization 4 cheats steam. The best place to get cheats, codes, cheat codes, walkthrough, guide, FAQ, unlockables, tricks, and secrets for Civilization 4 for PC. For Sid Meier's Civilization IV on the PC, GameFAQs has 41 cheat codes and secrets.

Dead State : यहाँ पर thread का काम पूरा होकर वो बंद हो जाता है


Example for Thread States

Source Code : Output :