摘要:
#Author:'haijing'#date:2018/12/20import threadingimport time#通过类创建多线程class MyThread(threading.Thread): #MyThread类继承threading.Thread类 def __init__(self 阅读全文
摘要:
#Author:'haijing'#date:2018/11/15#socket的方法比如bind方法、listen方法、都被封装在socketserver中#具体怎么去接收和发送都在类中的handle方法中自己去定义#listen方法在socketserver中默认为5个import socket 阅读全文