在Python中,target
是一個可選參數,用于指定在創建線程時要運行的函數。
以下是target
在Python中的用法示例:
import threading
def print_name():
print("Hello, World!")
thread = threading.Thread(target=print_name)
thread.start()
import threading
def print_name(name):
print("Hello, " + name + "!")
thread = threading.Thread(target=print_name, args=("Alice",))
thread.start()
import threading
thread = threading.Thread(target=lambda: print("Hello, World!"))
thread.start()
import threading
class MyThread(threading.Thread):
def run(self):
print("Hello, World!")
thread = MyThread()
thread.start()
需要注意的是,target
參數只能接受一個可調用對象,例如函數、lambda表達式或類的方法。如果要傳遞多個參數,可以使用args
或 kwargs
參數來傳遞參數。