日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

setname_Python线程类| setName()方法与示例

發布時間:2025/3/11 python 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 setname_Python线程类| setName()方法与示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

setname

Python Thread.setName()方法 (Python Thread.setName() Method)

Thread.setName() method is an inbuilt method of the Thread class of the threading module in Python. It uses a Thread object and sets the name of the thread.

Thread.setName()方法是Python中線程模塊的Thread類的內置方法。 它使用Thread對象并設置線程的名稱。

Module:

模塊:

from threading import Thread

Syntax:

句法:

setName()

Parameter(s):

參數:

  • None

    沒有

Return value:

返回值:

The return type of this method is <class 'NoneType'>, it sets the name of the Thread object which calls this method.

此方法的返回類型為<class'NoneType'> ,它設置調用此方法的Thread對象的名稱。

Example:

例:

# Python program to explain the # use of setName() methodimport time import threadingdef thread_1(i):time.sleep(5)#threading.current_thread.setName("frgrfvrv")print('Value by '+ str(threading.current_thread().getName())+" is: ", i)def thread_2(i):print('Value by '+ str(threading.current_thread().getName())+" is: ", i)def thread_3(i):time.sleep(4)print('Value by '+ str(threading.current_thread().getName())+" is: ", i)# Creating three sample threads thread1 = threading.Thread(target=thread_1, args=(10,)) thread1.setName("Thread_number_1") thread2 = threading.Thread(target=thread_2, args=(20,)) thread2.setName("Thread_number_2") thread3 = threading.Thread(target=thread_2, args=(30,)) thread3.setName("Thread_number_3")# Running the threads thread1.start() thread2.start() thread3.start()

Output

輸出量

Value by Thread_number_2 is: 20 Value by Thread_number_3 is: 30 Value by Thread_number_1 is: 10

翻譯自: https://www.includehelp.com/python/thread-setname-method-with-example.aspx

setname

總結

以上是生活随笔為你收集整理的setname_Python线程类| setName()方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。