问题描述
堆栈溢出!也许我错过了一个关键的细节,但是Python 3似乎没有读懂下面所示代码中的注释。我正在尝试为连接到服务器的每个客户端启动线程,以便多个客户端具有连接到服务器的功能。这是我发现对我来说很成问题的代码段,因为正如打印所显示的那样,Python似乎甚至都不会对其余部分有所了解。
conn,addr = s.accept()
print(f"{addr} has joined the server.")
clientsocket_list.append(conn)
print("Adding client to list")
#Based on which prints are actually printing,it seems Python is only reading up to here.
clientthread(conn,addr)
print("Using clientthread")
client_thread_thread = threading.Thread(target=clientthread(conn,addr))
print(f"Starting new thread for {conn},Thread #{threads}")
client_thread_thread.start()
threads += 1
client_thread_thread.join()
任何帮助将不胜感激,谢谢!另外,如果我遗漏了任何重要的东西,我深表歉意,这是我对Stack的第一个问题,因此我仍然想解决一下!谢谢!
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)