一个超简单的python线程

一、全部代码

import threading

class SimpleThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)

    def run(self):
        print("查看当前线程: ", threading.current_thread())

if __name__ == "__main__":
    simpleThread = SimpleThread()
    simpleThread.start()
查看当前线程:  <SimpleThread(Thread-4, started 140658736084736)>

二、代码详解

导入 threading 线程模块:

import threading

从 threading.Thread 类 派生子类 SimpleThread:

class SimpleThread(threading.Thread)

重载初始化方法:

def __init__(self):
    threading.Thread.__init__(self)

重载 run 方法,通过 threading 模块中的 current_thread 函数,查看当前线程的实例:

def run(self):
    print("查看当前线程: ", threading.current_thread())

实例化一个 SimpleThread 对象 simpleThread。

调用 simpleThread 线程(对象)的 start 方法启动线程(让线程进入就绪状态)。

当 CPU 分配给线程时间片,调用线程的 run 方法,线程真正运行起来。

if __name__ == "__main__":
    simpleThread = SimpleThread()
    simpleThread.start()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值