我尝试ping for循环,但它非常慢: ping = subprocess.Popen(["ping", host], stdout = subprocess.PIPE, stderr = subprocess.PIPE) print out #This will show me theping result, I can check the content
我有一个应用程序,它ping您的本地子网上的每个可能的IP,以便编译响应IP地址的列表。目前,它一次只能ping通所有255个地址。是否可以将此应用程序转换为使用多线程,以通过一次time多个线程来提高速度?我对多线程的概念还很陌生,我认为这将是一个很好的学习方法(当然,只要有可能)。{ for (int i = 1; i < 255; i++) Pingping