কম্পিউটার

থ্রেডগুলিতে পাইথন ব্যতিক্রম কীভাবে পরিচালনা করবেন?


প্রদত্ত কোডটি ব্যতিক্রম ধরার জন্য পুনরায় লেখা হয়

import sys
import threading
import time
import Queue
def thread(args1, stop_event, queue_obj):
print "start thread"
stop_event.wait(12)
if not stop_event.is_set():
try:
raise Exception("boom!")
except Exception:
queue_obj.put(sys.exc_info())
pass
try:
queue_obj = Queue.Queue()
t_stop = threading.Event()
t = threading.Thread(target=thread, args=(1, t_stop, queue_obj))
t.start()
time.sleep(15)
print "stop thread!"
t_stop.set()
try:
exc = queue_obj.get(block=False)
except Queue.Empty:
pass
else:
exc_type, exc_obj, exc_trace = exc
print exc_obj
except Exception as e:
print "It took too long"

আউটপুট

C:/Users/TutorialsPoint1/~.py
start thread
stop thread!
boom!

  1. কিভাবে JSP একটি ব্যতিক্রম পরিচালনা করবেন?

  2. কিভাবে C# এ থ্রেড ধ্বংস করবেন?

  3. জাভাতে UncaughtExceptionHandler ব্যবহার করে ব্যতিক্রমটি কীভাবে পরিচালনা করবেন?

  4. Tkinter Python এ থ্রেড কিভাবে ব্যবহার করবেন?