Python线程的线程名

__author__ = 'LL_YING'
'''
线程名在类的初始化中定义,也可以使用Thread对象的setName方法设置。使用Thread对象的getName方法获得对象名。
'''
import threading
class MyThread(threading.Thread):
    def __init__(self, threadname):
        threading.Thread.__init__(self, name=threadname)
        # self.threadname = threadname
    def run(self):
        print(self.getName())

t1 = MyThread('T')
print(t1.getName())
t1.setName("TT")
print(t1.getName())
# 输出为
# T
# TT

你可能感兴趣的:(Python线程的线程名)