使用python上的线程访问文件

时间:2017-10-27 11:05:46

标签: python multithreading file

我有一个txt文件,我需要使用python上的线程访问该文件。

strcpy(shipPositions[i].fields[h],coord)

coord

每个线程循环1000行。例如:

  • thread_1从1到1000
  • thread_2从1001到2000,
  • ...

为此,我创建了100个线程,每个线程打开文件并使用它。我的问题是什么更快:

  • 每个帖子都会打开文件

  • 打开文件一次,并在所有线程之间共享

0 个答案:

没有答案