您好我尝试在我的“threadedSort”上运行一个线程,但我不能使用传统的void run方法,因为它返回void。我也试过使用synchronized方法,但我认为它没有任何区别......与可重入方法相同,我不知道我做错了什么。
private static String[] getDatathread(File file) throws IOException {
ArrayList<String> data = new ArrayList<String>();
BufferedReader in = new BufferedReader(new FileReader(file));
// Read the data from the file until the end of file is reached
while (true) {
String line = in.readLine();
if (line == null) {
// the end of file was reached
break;
} else {
//synchronized(line){
lock.lock();
try{
data.add(line);
}finally{
lock.unlock();
}
//}
}
}
//Close the input stream and return the data
in.close();
return data.toArray(new String[0]);
}
}
public static String[] threadedSort(File[] files) throws IOException, InterruptedException {
String[] sortedData = new String[0];
for (File file : files) {
String[] data = getDatathread(file);
Thread.sleep(100);
data = MergeSort.mergeSort(data);
sortedData = MergeSort.merge(sortedData, data);
}
return sortedData;
}
答案 0 :(得分:0)
我不确定为什么你在代码中使用了synchronized块或renentrant lock。您似乎已经在块上使用了锁,其中块中未使用的资源以任何方式共享
如果你想并行运行你自己的方法threadedSort并得到结果数据对象,你可以简单地指定要作为类变量返回的数据并稍后获取该对象。