摘要: 1.线程的创建 1.1 通过 类直接创建 import threading import time def foo(n): time.sleep(n) print("foo func:",n) def bar(n): time.sleep(n) print("bar func:",n) s1=tim 阅读全文
posted @ 2018-02-09 22:26 renpingsheng 阅读(517) 评论(0) 推荐(1) 编辑