我有一个方法,它接受一个列表并对其进行一些处理,并更新另一个全局列表。我需要运行此方法的多个实例,并行输入不同的列表。 多线程支持这个吗?如果是的话,我该如何使用它,即:我应该在线程中添加什么?例子非常受欢迎。
我正在考虑在线程类中有一个静态列表,它在运行时由线程的不同实例更新(列表包含字符串和计数器,因此更新是添加新字符串或增加现有字符串的计数器) ..我需要读取每10秒钟添加到此全局列表中的任何内容并打印它...正在使用适合此的静态列表以及如何使其线程安全?
答案 0 :(得分:6)
是的,这是多线程编程的一种常见用法。
class ListProcessor implements Runnable {
/* field/s representing param/s */
public ListProcessor(/* param/s */) {
/* ... */
}
@Override
public void run() {
/* process list */
}
}
然后,当你想要实际处理某些列表时。
class SomeClass {
ExecutorService listProcessor;
public SomeClass(/* ... */) {
listProcessor = ExecutorService.newFixedThreadPool(numThreads);
/* for each thread, however you want to do it */
listProcessor.execute(new ListProcessor(/* param/s */));
/* when finished adding threads */
listProcessor.shutdown();
/* note that the above two lines of code (execute/shutdown) can be
* placed anywhere in the code. I just put them in the constructor to
* facilitate this example.
*/
}
}
答案 1 :(得分:2)
@ purtip31开始并行处理。
我很关心结果 - 你提到你更新了一个“全局列表”。如果一次多个线程试图同时更新该列表,则可能存在问题。有两种选择:
ExecutorService
,但使用invokeAll()
方法,该方法并行运行一堆Callables并等待它们全部完成。然后,您可以浏览所有结果并一次更新一个。结果没有线程问题。这意味着您的代码必须实现Callable而不是Runnable(不是什么大不了的事)。 I have a blog with an example here 答案 2 :(得分:-1)
试试这个......
以下是一个代码,可以帮助你运行多个实例.......
主要帖子
public class mainprocess
{
public static LinkedList globallist;
public static String str;
public int num;
public static void main(String Data[])
{
globallist = new LinkedList();
// LinkedList will be passed as pass by reference.....
// globalist is made static and assigned likewise for global use..
childprocess.assignlist(globallist);
childprocess p1 = new childprocess("string input"); // a string input...
childprocess p2 = new childprocess(number input); // a number input...
p1.t.join();
p2.t.join();
}
}
儿童线程.....
public class childprocess implements Runnable
{
public Thread t1,t2;
public boolean inttype,stringtype;
String string;
int num;
public static LinkedList temp = new Linkedlist();
public static assignlist(LinkedList ll)
{
temp = ll;
}
public childprocess(String str)
{
string = str;
t1 = new Thread(this,"stringThread");
t1.start();
}
@override
public childprocess(int n)
{
num = n;
t2 = new Thread(this,"numberThread");
t2.start();
}
@override
public void run()
{
// Both will be executed in a threader manner based on the condition...
if(Thread.currentThread().getName().equals("stringThread")
{
// your process using string......
childprocess.temp.add(str);
}
else if(Thread.currentThread().getName().equals("numberThread")
{
// your process using number.....
chilprocess.temp.add(num);
}
}
}
如果您使用的功能一次只能限制在一个线程 ......
包括语法....
public synchronized func_type func_name()
{
}