原创 多線程拷貝

多線程拷貝和多進程拷貝思路相同,只是把進程換成了線程,提高程序的併發性,代碼如下: #include<stdio.h> #include<pthread.h> #include<string.h> #include<sys